-
-
Save Viicos/bd9b3b0e3fbee62838626b07b311f3af to your computer and use it in GitHub Desktop.
k8s_v2.py
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # generated by datamodel-codegen: | |
| # filename: https://github.com/kubernetes/kubernetes/raw/master/api/openapi-spec/swagger.json | |
| # timestamp: 2024-08-01T23:10:43+00:00 | |
| # from __future__ import annotations | |
| from typing import List, Optional | |
| from pydantic import BaseModel, Field | |
| class Key(BaseModel): | |
| description: str | |
| type: str | |
| class ValueExpression(BaseModel): | |
| description: str | |
| type: str | |
| class Properties(BaseModel): | |
| key: Key | |
| valueExpression: ValueExpression | |
| class IoK8sApiAdmissionregistrationV1AuditAnnotation(BaseModel): | |
| description: str | |
| properties: Properties | |
| required: List[str] | |
| type: str | |
| class FieldRef(BaseModel): | |
| description: str | |
| type: str | |
| class Warning(BaseModel): | |
| description: str | |
| type: str | |
| class Properties1(BaseModel): | |
| fieldRef: FieldRef | |
| warning: Warning | |
| class IoK8sApiAdmissionregistrationV1ExpressionWarning(BaseModel): | |
| description: str | |
| properties: Properties1 | |
| required: List[str] | |
| type: str | |
| class Expression(BaseModel): | |
| description: str | |
| type: str | |
| class Name(BaseModel): | |
| description: str | |
| type: str | |
| class Properties2(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1MatchCondition(BaseModel): | |
| description: str | |
| properties: Properties2 | |
| required: List[str] | |
| type: str | |
| class Items(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExcludeResourceRules(BaseModel): | |
| description: str | |
| items: Items | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MatchPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class NamespaceSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ObjectSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ResourceRules(BaseModel): | |
| description: str | |
| items: Items | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties3(BaseModel): | |
| excludeResourceRules: ExcludeResourceRules | |
| matchPolicy: MatchPolicy | |
| namespaceSelector: NamespaceSelector | |
| objectSelector: ObjectSelector | |
| resourceRules: ResourceRules | |
| class IoK8sApiAdmissionregistrationV1MatchResources(BaseModel): | |
| description: str | |
| properties: Properties3 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items2(BaseModel): | |
| type: str | |
| class AdmissionReviewVersions(BaseModel): | |
| description: str | |
| items: Items2 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ClientConfig(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class FailurePolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Items3(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class MatchConditions(BaseModel): | |
| description: str | |
| items: Items3 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ReinvocationPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Rules(BaseModel): | |
| description: str | |
| items: Items3 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SideEffects(BaseModel): | |
| description: str | |
| type: str | |
| class TimeoutSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties4(BaseModel): | |
| admissionReviewVersions: AdmissionReviewVersions | |
| clientConfig: ClientConfig | |
| failurePolicy: FailurePolicy | |
| matchConditions: MatchConditions | |
| matchPolicy: MatchPolicy | |
| name: Name | |
| namespaceSelector: NamespaceSelector | |
| objectSelector: ObjectSelector | |
| reinvocationPolicy: ReinvocationPolicy | |
| rules: Rules | |
| sideEffects: SideEffects | |
| timeoutSeconds: TimeoutSeconds | |
| class IoK8sApiAdmissionregistrationV1MutatingWebhook(BaseModel): | |
| description: str | |
| properties: Properties4 | |
| required: List[str] | |
| type: str | |
| class ApiVersion(BaseModel): | |
| description: str | |
| type: str | |
| class Kind(BaseModel): | |
| description: str | |
| type: str | |
| class Metadata(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Webhooks(BaseModel): | |
| description: str | |
| items: Items3 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties5(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| webhooks: Webhooks | |
| class XKubernetesGroupVersionKindItem(BaseModel): | |
| group: str | |
| kind: str | |
| version: str | |
| class IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration(BaseModel): | |
| description: str | |
| properties: Properties5 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items6(BaseModel): | |
| description: str | |
| items: Items3 | |
| type: str | |
| class Properties6(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items6 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1MutatingWebhookConfigurationList(BaseModel): | |
| description: str | |
| properties: Properties6 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items8(BaseModel): | |
| type: str | |
| class ApiGroups(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ApiVersions(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Operations(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceNames(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Scope(BaseModel): | |
| description: str | |
| type: str | |
| class Properties7(BaseModel): | |
| apiGroups: ApiGroups | |
| apiVersions: ApiVersions | |
| operations: Operations | |
| resourceNames: ResourceNames | |
| resources: Resources | |
| scope: Scope | |
| class IoK8sApiAdmissionregistrationV1NamedRuleWithOperations(BaseModel): | |
| description: str | |
| properties: Properties7 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties8(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| class IoK8sApiAdmissionregistrationV1ParamKind(BaseModel): | |
| description: str | |
| properties: Properties8 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Namespace(BaseModel): | |
| description: str | |
| type: str | |
| class ParameterNotFoundAction(BaseModel): | |
| description: str | |
| type: str | |
| class Selector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties9(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| parameterNotFoundAction: ParameterNotFoundAction | |
| selector: Selector | |
| class IoK8sApiAdmissionregistrationV1ParamRef(BaseModel): | |
| description: str | |
| properties: Properties9 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class ApiGroups1(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ApiVersions1(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Operations1(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources1(BaseModel): | |
| description: str | |
| items: Items8 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties10(BaseModel): | |
| apiGroups: ApiGroups1 | |
| apiVersions: ApiVersions1 | |
| operations: Operations1 | |
| resources: Resources1 | |
| scope: Scope | |
| class IoK8sApiAdmissionregistrationV1RuleWithOperations(BaseModel): | |
| description: str | |
| properties: Properties10 | |
| type: str | |
| class Path(BaseModel): | |
| description: str | |
| type: str | |
| class Port(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties11(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| path: Path | |
| port: Port | |
| class IoK8sApiAdmissionregistrationV1ServiceReference(BaseModel): | |
| description: str | |
| properties: Properties11 | |
| required: List[str] | |
| type: str | |
| class Items17(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExpressionWarnings(BaseModel): | |
| description: str | |
| items: Items17 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties12(BaseModel): | |
| expressionWarnings: ExpressionWarnings | |
| class IoK8sApiAdmissionregistrationV1TypeChecking(BaseModel): | |
| description: str | |
| properties: Properties12 | |
| type: str | |
| class Spec(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Status(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties13(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicy(BaseModel): | |
| description: str | |
| properties: Properties13 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties14(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBinding(BaseModel): | |
| description: str | |
| properties: Properties14 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items18(BaseModel): | |
| description: str | |
| items: Items17 | |
| type: str | |
| class Properties15(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items18 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBindingList(BaseModel): | |
| description: str | |
| properties: Properties15 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class MatchResources(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ParamRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PolicyName(BaseModel): | |
| description: str | |
| type: str | |
| class Items20(BaseModel): | |
| type: str | |
| class ValidationActions(BaseModel): | |
| description: str | |
| items: Items20 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties16(BaseModel): | |
| matchResources: MatchResources | |
| paramRef: ParamRef | |
| policyName: PolicyName | |
| validationActions: ValidationActions | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBindingSpec(BaseModel): | |
| description: str | |
| properties: Properties16 | |
| type: str | |
| class Items22(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items21(BaseModel): | |
| description: str | |
| items: Items22 | |
| type: str | |
| class Properties17(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items21 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyList(BaseModel): | |
| description: str | |
| properties: Properties17 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items23(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AuditAnnotations(BaseModel): | |
| description: str | |
| items: Items23 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MatchConditions1(BaseModel): | |
| description: str | |
| items: Items23 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class MatchConstraints(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ParamKind(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Validations(BaseModel): | |
| description: str | |
| items: Items23 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Variables(BaseModel): | |
| description: str | |
| items: Items23 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties18(BaseModel): | |
| auditAnnotations: AuditAnnotations | |
| failurePolicy: FailurePolicy | |
| matchConditions: MatchConditions1 | |
| matchConstraints: MatchConstraints | |
| paramKind: ParamKind | |
| validations: Validations | |
| variables: Variables | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicySpec(BaseModel): | |
| description: str | |
| properties: Properties18 | |
| type: str | |
| class Conditions(BaseModel): | |
| description: str | |
| items: Items23 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ObservedGeneration(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class TypeChecking(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties19(BaseModel): | |
| conditions: Conditions | |
| observedGeneration: ObservedGeneration | |
| typeChecking: TypeChecking | |
| class IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyStatus(BaseModel): | |
| description: str | |
| properties: Properties19 | |
| type: str | |
| class Items28(BaseModel): | |
| type: str | |
| class AdmissionReviewVersions1(BaseModel): | |
| description: str | |
| items: Items28 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items29(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class MatchConditions2(BaseModel): | |
| description: str | |
| items: Items29 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Rules1(BaseModel): | |
| description: str | |
| items: Items29 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties20(BaseModel): | |
| admissionReviewVersions: AdmissionReviewVersions1 | |
| clientConfig: ClientConfig | |
| failurePolicy: FailurePolicy | |
| matchConditions: MatchConditions2 | |
| matchPolicy: MatchPolicy | |
| name: Name | |
| namespaceSelector: NamespaceSelector | |
| objectSelector: ObjectSelector | |
| rules: Rules1 | |
| sideEffects: SideEffects | |
| timeoutSeconds: TimeoutSeconds | |
| class IoK8sApiAdmissionregistrationV1ValidatingWebhook(BaseModel): | |
| description: str | |
| properties: Properties20 | |
| required: List[str] | |
| type: str | |
| class Webhooks1(BaseModel): | |
| description: str | |
| items: Items29 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties21(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| webhooks: Webhooks1 | |
| class IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration(BaseModel): | |
| description: str | |
| properties: Properties21 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items32(BaseModel): | |
| description: str | |
| items: Items29 | |
| type: str | |
| class Properties22(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items32 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1ValidatingWebhookConfigurationList(BaseModel): | |
| description: str | |
| properties: Properties22 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Message(BaseModel): | |
| description: str | |
| type: str | |
| class MessageExpression(BaseModel): | |
| description: str | |
| type: str | |
| class Reason(BaseModel): | |
| description: str | |
| type: str | |
| class Properties23(BaseModel): | |
| expression: Expression | |
| message: Message | |
| messageExpression: MessageExpression | |
| reason: Reason | |
| class IoK8sApiAdmissionregistrationV1Validation(BaseModel): | |
| description: str | |
| properties: Properties23 | |
| required: List[str] | |
| type: str | |
| class Properties24(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1Variable(BaseModel): | |
| description: str | |
| properties: Properties24 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class CaBundle(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Service(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Url(BaseModel): | |
| description: str | |
| type: str | |
| class Properties25(BaseModel): | |
| caBundle: CaBundle | |
| service: Service | |
| url: Url | |
| class IoK8sApiAdmissionregistrationV1WebhookClientConfig(BaseModel): | |
| description: str | |
| properties: Properties25 | |
| type: str | |
| class Properties26(BaseModel): | |
| key: Key | |
| valueExpression: ValueExpression | |
| class IoK8sApiAdmissionregistrationV1alpha1AuditAnnotation(BaseModel): | |
| description: str | |
| properties: Properties26 | |
| required: List[str] | |
| type: str | |
| class Properties27(BaseModel): | |
| fieldRef: FieldRef | |
| warning: Warning | |
| class IoK8sApiAdmissionregistrationV1alpha1ExpressionWarning(BaseModel): | |
| description: str | |
| properties: Properties27 | |
| required: List[str] | |
| type: str | |
| class Properties28(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1alpha1MatchCondition(BaseModel): | |
| properties: Properties28 | |
| required: List[str] | |
| type: str | |
| class Items34(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExcludeResourceRules1(BaseModel): | |
| description: str | |
| items: Items34 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceRules1(BaseModel): | |
| description: str | |
| items: Items34 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties29(BaseModel): | |
| excludeResourceRules: ExcludeResourceRules1 | |
| matchPolicy: MatchPolicy | |
| namespaceSelector: NamespaceSelector | |
| objectSelector: ObjectSelector | |
| resourceRules: ResourceRules1 | |
| class IoK8sApiAdmissionregistrationV1alpha1MatchResources(BaseModel): | |
| description: str | |
| properties: Properties29 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items36(BaseModel): | |
| type: str | |
| class ApiGroups2(BaseModel): | |
| description: str | |
| items: Items36 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ApiVersions2(BaseModel): | |
| description: str | |
| items: Items36 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Operations2(BaseModel): | |
| description: str | |
| items: Items36 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceNames1(BaseModel): | |
| description: str | |
| items: Items36 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources2(BaseModel): | |
| description: str | |
| items: Items36 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties30(BaseModel): | |
| apiGroups: ApiGroups2 | |
| apiVersions: ApiVersions2 | |
| operations: Operations2 | |
| resourceNames: ResourceNames1 | |
| resources: Resources2 | |
| scope: Scope | |
| class IoK8sApiAdmissionregistrationV1alpha1NamedRuleWithOperations(BaseModel): | |
| description: str | |
| properties: Properties30 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties31(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| class IoK8sApiAdmissionregistrationV1alpha1ParamKind(BaseModel): | |
| description: str | |
| properties: Properties31 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties32(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| parameterNotFoundAction: ParameterNotFoundAction | |
| selector: Selector | |
| class IoK8sApiAdmissionregistrationV1alpha1ParamRef(BaseModel): | |
| description: str | |
| properties: Properties32 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items41(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExpressionWarnings1(BaseModel): | |
| description: str | |
| items: Items41 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties33(BaseModel): | |
| expressionWarnings: ExpressionWarnings1 | |
| class IoK8sApiAdmissionregistrationV1alpha1TypeChecking(BaseModel): | |
| description: str | |
| properties: Properties33 | |
| type: str | |
| class Properties34(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicy(BaseModel): | |
| description: str | |
| properties: Properties34 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties35(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding(BaseModel): | |
| description: str | |
| properties: Properties35 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items42(BaseModel): | |
| description: str | |
| items: Items41 | |
| type: str | |
| class Properties36(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items42 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties36 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items44(BaseModel): | |
| type: str | |
| class ValidationActions1(BaseModel): | |
| description: str | |
| items: Items44 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties37(BaseModel): | |
| matchResources: MatchResources | |
| paramRef: ParamRef | |
| policyName: PolicyName | |
| validationActions: ValidationActions1 | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingSpec( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties37 | |
| type: str | |
| class Items46(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items45(BaseModel): | |
| description: str | |
| items: Items46 | |
| type: str | |
| class Properties38(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items45 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList(BaseModel): | |
| description: str | |
| properties: Properties38 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items47(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AuditAnnotations1(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MatchConditions3(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Validations1(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Variables1(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties39(BaseModel): | |
| auditAnnotations: AuditAnnotations1 | |
| failurePolicy: FailurePolicy | |
| matchConditions: MatchConditions3 | |
| matchConstraints: MatchConstraints | |
| paramKind: ParamKind | |
| validations: Validations1 | |
| variables: Variables1 | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicySpec(BaseModel): | |
| description: str | |
| properties: Properties39 | |
| type: str | |
| class Conditions1(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties40(BaseModel): | |
| conditions: Conditions1 | |
| observedGeneration: ObservedGeneration | |
| typeChecking: TypeChecking | |
| class IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus(BaseModel): | |
| description: str | |
| properties: Properties40 | |
| type: str | |
| class Properties41(BaseModel): | |
| expression: Expression | |
| message: Message | |
| messageExpression: MessageExpression | |
| reason: Reason | |
| class IoK8sApiAdmissionregistrationV1alpha1Validation(BaseModel): | |
| description: str | |
| properties: Properties41 | |
| required: List[str] | |
| type: str | |
| class Properties42(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1alpha1Variable(BaseModel): | |
| description: str | |
| properties: Properties42 | |
| required: List[str] | |
| type: str | |
| class Properties43(BaseModel): | |
| key: Key | |
| valueExpression: ValueExpression | |
| class IoK8sApiAdmissionregistrationV1beta1AuditAnnotation(BaseModel): | |
| description: str | |
| properties: Properties43 | |
| required: List[str] | |
| type: str | |
| class Properties44(BaseModel): | |
| fieldRef: FieldRef | |
| warning: Warning | |
| class IoK8sApiAdmissionregistrationV1beta1ExpressionWarning(BaseModel): | |
| description: str | |
| properties: Properties44 | |
| required: List[str] | |
| type: str | |
| class Properties45(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1beta1MatchCondition(BaseModel): | |
| description: str | |
| properties: Properties45 | |
| required: List[str] | |
| type: str | |
| class ExcludeResourceRules2(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceRules2(BaseModel): | |
| description: str | |
| items: Items47 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties46(BaseModel): | |
| excludeResourceRules: ExcludeResourceRules2 | |
| matchPolicy: MatchPolicy | |
| namespaceSelector: NamespaceSelector | |
| objectSelector: ObjectSelector | |
| resourceRules: ResourceRules2 | |
| class IoK8sApiAdmissionregistrationV1beta1MatchResources(BaseModel): | |
| description: str | |
| properties: Properties46 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items54(BaseModel): | |
| type: str | |
| class ApiGroups3(BaseModel): | |
| description: str | |
| items: Items54 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ApiVersions3(BaseModel): | |
| description: str | |
| items: Items54 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Operations3(BaseModel): | |
| description: str | |
| items: Items54 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceNames2(BaseModel): | |
| description: str | |
| items: Items54 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources3(BaseModel): | |
| description: str | |
| items: Items54 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties47(BaseModel): | |
| apiGroups: ApiGroups3 | |
| apiVersions: ApiVersions3 | |
| operations: Operations3 | |
| resourceNames: ResourceNames2 | |
| resources: Resources3 | |
| scope: Scope | |
| class IoK8sApiAdmissionregistrationV1beta1NamedRuleWithOperations(BaseModel): | |
| description: str | |
| properties: Properties47 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties48(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| class IoK8sApiAdmissionregistrationV1beta1ParamKind(BaseModel): | |
| description: str | |
| properties: Properties48 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties49(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| parameterNotFoundAction: ParameterNotFoundAction | |
| selector: Selector | |
| class IoK8sApiAdmissionregistrationV1beta1ParamRef(BaseModel): | |
| description: str | |
| properties: Properties49 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items59(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExpressionWarnings2(BaseModel): | |
| description: str | |
| items: Items59 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties50(BaseModel): | |
| expressionWarnings: ExpressionWarnings2 | |
| class IoK8sApiAdmissionregistrationV1beta1TypeChecking(BaseModel): | |
| description: str | |
| properties: Properties50 | |
| type: str | |
| class Properties51(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicy(BaseModel): | |
| description: str | |
| properties: Properties51 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties52(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding(BaseModel): | |
| description: str | |
| properties: Properties52 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items60(BaseModel): | |
| description: str | |
| items: Items59 | |
| type: str | |
| class Properties53(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items60 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties53 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items62(BaseModel): | |
| type: str | |
| class ValidationActions2(BaseModel): | |
| description: str | |
| items: Items62 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties54(BaseModel): | |
| matchResources: MatchResources | |
| paramRef: ParamRef | |
| policyName: PolicyName | |
| validationActions: ValidationActions2 | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingSpec( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties54 | |
| type: str | |
| class Items64(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items63(BaseModel): | |
| description: str | |
| items: Items64 | |
| type: str | |
| class Properties55(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items63 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyList(BaseModel): | |
| description: str | |
| properties: Properties55 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items65(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AuditAnnotations2(BaseModel): | |
| description: str | |
| items: Items65 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MatchConditions4(BaseModel): | |
| description: str | |
| items: Items65 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Validations2(BaseModel): | |
| description: str | |
| items: Items65 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Variables2(BaseModel): | |
| description: str | |
| items: Items65 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties56(BaseModel): | |
| auditAnnotations: AuditAnnotations2 | |
| failurePolicy: FailurePolicy | |
| matchConditions: MatchConditions4 | |
| matchConstraints: MatchConstraints | |
| paramKind: ParamKind | |
| validations: Validations2 | |
| variables: Variables2 | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicySpec(BaseModel): | |
| description: str | |
| properties: Properties56 | |
| type: str | |
| class Conditions2(BaseModel): | |
| description: str | |
| items: Items65 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties57(BaseModel): | |
| conditions: Conditions2 | |
| observedGeneration: ObservedGeneration | |
| typeChecking: TypeChecking | |
| class IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus(BaseModel): | |
| description: str | |
| properties: Properties57 | |
| type: str | |
| class Properties58(BaseModel): | |
| expression: Expression | |
| message: Message | |
| messageExpression: MessageExpression | |
| reason: Reason | |
| class IoK8sApiAdmissionregistrationV1beta1Validation(BaseModel): | |
| description: str | |
| properties: Properties58 | |
| required: List[str] | |
| type: str | |
| class Properties59(BaseModel): | |
| expression: Expression | |
| name: Name | |
| class IoK8sApiAdmissionregistrationV1beta1Variable(BaseModel): | |
| description: str | |
| properties: Properties59 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class ApiServerID(BaseModel): | |
| description: str | |
| type: str | |
| class Items70(BaseModel): | |
| type: str | |
| class DecodableVersions(BaseModel): | |
| description: str | |
| items: Items70 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class EncodingVersion(BaseModel): | |
| description: str | |
| type: str | |
| class ServedVersions(BaseModel): | |
| description: str | |
| items: Items70 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties60(BaseModel): | |
| apiServerID: ApiServerID | |
| decodableVersions: DecodableVersions | |
| encodingVersion: EncodingVersion | |
| servedVersions: ServedVersions | |
| class IoK8sApiApiserverinternalV1alpha1ServerStorageVersion(BaseModel): | |
| description: str | |
| properties: Properties60 | |
| type: str | |
| class Properties61(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status | |
| class IoK8sApiApiserverinternalV1alpha1StorageVersion(BaseModel): | |
| description: str | |
| properties: Properties61 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class LastTransitionTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Status4(BaseModel): | |
| description: str | |
| type: str | |
| class Type(BaseModel): | |
| description: str | |
| type: str | |
| class Properties62(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| observedGeneration: ObservedGeneration | |
| reason: Reason | |
| status: Status4 | |
| type: Type | |
| class IoK8sApiApiserverinternalV1alpha1StorageVersionCondition(BaseModel): | |
| description: str | |
| properties: Properties62 | |
| required: List[str] | |
| type: str | |
| class Items73(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items72(BaseModel): | |
| description: str | |
| items: Items73 | |
| type: str | |
| class Properties63(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items72 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiApiserverinternalV1alpha1StorageVersionList(BaseModel): | |
| description: str | |
| properties: Properties63 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class IoK8sApiApiserverinternalV1alpha1StorageVersionSpec(BaseModel): | |
| description: str | |
| type: str | |
| class CommonEncodingVersion(BaseModel): | |
| description: str | |
| type: str | |
| class Items74(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions3(BaseModel): | |
| description: str | |
| items: Items74 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class StorageVersions(BaseModel): | |
| description: str | |
| items: Items74 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties64(BaseModel): | |
| commonEncodingVersion: CommonEncodingVersion | |
| conditions: Conditions3 | |
| storageVersions: StorageVersions | |
| class IoK8sApiApiserverinternalV1alpha1StorageVersionStatus(BaseModel): | |
| description: str | |
| properties: Properties64 | |
| type: str | |
| class Data(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Revision(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties65(BaseModel): | |
| apiVersion: ApiVersion | |
| data: Data | |
| kind: Kind | |
| metadata: Metadata | |
| revision: Revision | |
| class IoK8sApiAppsV1ControllerRevision(BaseModel): | |
| description: str | |
| properties: Properties65 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items76(BaseModel): | |
| description: str | |
| items: Items74 | |
| type: str | |
| class Properties66(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items76 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAppsV1ControllerRevisionList(BaseModel): | |
| description: str | |
| properties: Properties66 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status5(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties67(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status5 | |
| class IoK8sApiAppsV1DaemonSet(BaseModel): | |
| description: str | |
| properties: Properties67 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status6(BaseModel): | |
| description: str | |
| type: str | |
| class Properties68(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| reason: Reason | |
| status: Status6 | |
| type: Type | |
| class IoK8sApiAppsV1DaemonSetCondition(BaseModel): | |
| description: str | |
| properties: Properties68 | |
| required: List[str] | |
| type: str | |
| class Items79(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items78(BaseModel): | |
| description: str | |
| items: Items79 | |
| type: str | |
| class Properties69(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items78 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAppsV1DaemonSetList(BaseModel): | |
| description: str | |
| properties: Properties69 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class MinReadySeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class RevisionHistoryLimit(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Template(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class UpdateStrategy(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties70(BaseModel): | |
| minReadySeconds: MinReadySeconds | |
| revisionHistoryLimit: RevisionHistoryLimit | |
| selector: Selector | |
| template: Template | |
| updateStrategy: UpdateStrategy | |
| class IoK8sApiAppsV1DaemonSetSpec(BaseModel): | |
| description: str | |
| properties: Properties70 | |
| required: List[str] | |
| type: str | |
| class CollisionCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Items80(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions4(BaseModel): | |
| description: str | |
| items: Items80 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class CurrentNumberScheduled(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class DesiredNumberScheduled(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NumberAvailable(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NumberMisscheduled(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NumberReady(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NumberUnavailable(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class UpdatedNumberScheduled(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties71(BaseModel): | |
| collisionCount: CollisionCount | |
| conditions: Conditions4 | |
| currentNumberScheduled: CurrentNumberScheduled | |
| desiredNumberScheduled: DesiredNumberScheduled | |
| numberAvailable: NumberAvailable | |
| numberMisscheduled: NumberMisscheduled | |
| numberReady: NumberReady | |
| numberUnavailable: NumberUnavailable | |
| observedGeneration: ObservedGeneration | |
| updatedNumberScheduled: UpdatedNumberScheduled | |
| class IoK8sApiAppsV1DaemonSetStatus(BaseModel): | |
| description: str | |
| properties: Properties71 | |
| required: List[str] | |
| type: str | |
| class RollingUpdate(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties72(BaseModel): | |
| rollingUpdate: RollingUpdate | |
| type: Type | |
| class IoK8sApiAppsV1DaemonSetUpdateStrategy(BaseModel): | |
| description: str | |
| properties: Properties72 | |
| type: str | |
| class Status7(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties73(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status7 | |
| class IoK8sApiAppsV1Deployment(BaseModel): | |
| description: str | |
| properties: Properties73 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class LastUpdateTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Status8(BaseModel): | |
| description: str | |
| type: str | |
| class Properties74(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| lastUpdateTime: LastUpdateTime | |
| message: Message | |
| reason: Reason | |
| status: Status8 | |
| type: Type | |
| class IoK8sApiAppsV1DeploymentCondition(BaseModel): | |
| description: str | |
| properties: Properties74 | |
| required: List[str] | |
| type: str | |
| class Items81(BaseModel): | |
| description: str | |
| items: Items80 | |
| type: str | |
| class Properties75(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items81 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAppsV1DeploymentList(BaseModel): | |
| description: str | |
| properties: Properties75 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Paused(BaseModel): | |
| description: str | |
| type: str | |
| class ProgressDeadlineSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Replicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Strategy(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties76(BaseModel): | |
| minReadySeconds: MinReadySeconds | |
| paused: Paused | |
| progressDeadlineSeconds: ProgressDeadlineSeconds | |
| replicas: Replicas | |
| revisionHistoryLimit: RevisionHistoryLimit | |
| selector: Selector | |
| strategy: Strategy | |
| template: Template | |
| class IoK8sApiAppsV1DeploymentSpec(BaseModel): | |
| description: str | |
| properties: Properties76 | |
| required: List[str] | |
| type: str | |
| class AvailableReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Items83(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions5(BaseModel): | |
| description: str | |
| items: Items83 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ReadyReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class UnavailableReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class UpdatedReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties77(BaseModel): | |
| availableReplicas: AvailableReplicas | |
| collisionCount: CollisionCount | |
| conditions: Conditions5 | |
| observedGeneration: ObservedGeneration | |
| readyReplicas: ReadyReplicas | |
| replicas: Replicas | |
| unavailableReplicas: UnavailableReplicas | |
| updatedReplicas: UpdatedReplicas | |
| class IoK8sApiAppsV1DeploymentStatus(BaseModel): | |
| description: str | |
| properties: Properties77 | |
| type: str | |
| class Properties78(BaseModel): | |
| rollingUpdate: RollingUpdate | |
| type: Type | |
| class IoK8sApiAppsV1DeploymentStrategy(BaseModel): | |
| description: str | |
| properties: Properties78 | |
| type: str | |
| class Status9(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties79(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status9 | |
| class IoK8sApiAppsV1ReplicaSet(BaseModel): | |
| description: str | |
| properties: Properties79 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status10(BaseModel): | |
| description: str | |
| type: str | |
| class Properties80(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| reason: Reason | |
| status: Status10 | |
| type: Type | |
| class IoK8sApiAppsV1ReplicaSetCondition(BaseModel): | |
| description: str | |
| properties: Properties80 | |
| required: List[str] | |
| type: str | |
| class Items84(BaseModel): | |
| description: str | |
| items: Items83 | |
| type: str | |
| class Properties81(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items84 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAppsV1ReplicaSetList(BaseModel): | |
| description: str | |
| properties: Properties81 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties82(BaseModel): | |
| minReadySeconds: MinReadySeconds | |
| replicas: Replicas | |
| selector: Selector | |
| template: Template | |
| class IoK8sApiAppsV1ReplicaSetSpec(BaseModel): | |
| description: str | |
| properties: Properties82 | |
| required: List[str] | |
| type: str | |
| class Items86(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions6(BaseModel): | |
| description: str | |
| items: Items86 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class FullyLabeledReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties83(BaseModel): | |
| availableReplicas: AvailableReplicas | |
| conditions: Conditions6 | |
| fullyLabeledReplicas: FullyLabeledReplicas | |
| observedGeneration: ObservedGeneration | |
| readyReplicas: ReadyReplicas | |
| replicas: Replicas | |
| class IoK8sApiAppsV1ReplicaSetStatus(BaseModel): | |
| description: str | |
| properties: Properties83 | |
| required: List[str] | |
| type: str | |
| class MaxSurge(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class MaxUnavailable(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties84(BaseModel): | |
| maxSurge: MaxSurge | |
| maxUnavailable: MaxUnavailable | |
| class IoK8sApiAppsV1RollingUpdateDaemonSet(BaseModel): | |
| description: str | |
| properties: Properties84 | |
| type: str | |
| class Properties85(BaseModel): | |
| maxSurge: MaxSurge | |
| maxUnavailable: MaxUnavailable | |
| class IoK8sApiAppsV1RollingUpdateDeployment(BaseModel): | |
| description: str | |
| properties: Properties85 | |
| type: str | |
| class Partition(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties86(BaseModel): | |
| maxUnavailable: MaxUnavailable | |
| partition: Partition | |
| class IoK8sApiAppsV1RollingUpdateStatefulSetStrategy(BaseModel): | |
| description: str | |
| properties: Properties86 | |
| type: str | |
| class Status11(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties87(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status11 | |
| class IoK8sApiAppsV1StatefulSet(BaseModel): | |
| description: str | |
| properties: Properties87 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status12(BaseModel): | |
| description: str | |
| type: str | |
| class Properties88(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| reason: Reason | |
| status: Status12 | |
| type: Type | |
| class IoK8sApiAppsV1StatefulSetCondition(BaseModel): | |
| description: str | |
| properties: Properties88 | |
| required: List[str] | |
| type: str | |
| class Items87(BaseModel): | |
| description: str | |
| items: Items86 | |
| type: str | |
| class Properties89(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items87 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAppsV1StatefulSetList(BaseModel): | |
| description: str | |
| properties: Properties89 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Start(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties90(BaseModel): | |
| start: Start | |
| class IoK8sApiAppsV1StatefulSetOrdinals(BaseModel): | |
| description: str | |
| properties: Properties90 | |
| type: str | |
| class WhenDeleted(BaseModel): | |
| description: str | |
| type: str | |
| class WhenScaled(BaseModel): | |
| description: str | |
| type: str | |
| class Properties91(BaseModel): | |
| whenDeleted: WhenDeleted | |
| whenScaled: WhenScaled | |
| class IoK8sApiAppsV1StatefulSetPersistentVolumeClaimRetentionPolicy(BaseModel): | |
| description: str | |
| properties: Properties91 | |
| type: str | |
| class Ordinals(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PersistentVolumeClaimRetentionPolicy(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PodManagementPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class ServiceName(BaseModel): | |
| description: str | |
| type: str | |
| class Items89(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class VolumeClaimTemplates(BaseModel): | |
| description: str | |
| items: Items89 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties92(BaseModel): | |
| minReadySeconds: MinReadySeconds | |
| ordinals: Ordinals | |
| persistentVolumeClaimRetentionPolicy: PersistentVolumeClaimRetentionPolicy | |
| podManagementPolicy: PodManagementPolicy | |
| replicas: Replicas | |
| revisionHistoryLimit: RevisionHistoryLimit | |
| selector: Selector | |
| serviceName: ServiceName | |
| template: Template | |
| updateStrategy: UpdateStrategy | |
| volumeClaimTemplates: VolumeClaimTemplates | |
| class IoK8sApiAppsV1StatefulSetSpec(BaseModel): | |
| description: str | |
| properties: Properties92 | |
| required: List[str] | |
| type: str | |
| class Conditions7(BaseModel): | |
| description: str | |
| items: Items89 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class CurrentReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class CurrentRevision(BaseModel): | |
| description: str | |
| type: str | |
| class UpdateRevision(BaseModel): | |
| description: str | |
| type: str | |
| class Properties93(BaseModel): | |
| availableReplicas: AvailableReplicas | |
| collisionCount: CollisionCount | |
| conditions: Conditions7 | |
| currentReplicas: CurrentReplicas | |
| currentRevision: CurrentRevision | |
| observedGeneration: ObservedGeneration | |
| readyReplicas: ReadyReplicas | |
| replicas: Replicas | |
| updateRevision: UpdateRevision | |
| updatedReplicas: UpdatedReplicas | |
| class IoK8sApiAppsV1StatefulSetStatus(BaseModel): | |
| description: str | |
| properties: Properties93 | |
| required: List[str] | |
| type: str | |
| class Properties94(BaseModel): | |
| rollingUpdate: RollingUpdate | |
| type: Type | |
| class IoK8sApiAppsV1StatefulSetUpdateStrategy(BaseModel): | |
| description: str | |
| properties: Properties94 | |
| type: str | |
| class Uid(BaseModel): | |
| description: str | |
| type: str | |
| class Properties95(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| name: Name | |
| uid: Uid | |
| class IoK8sApiAuthenticationV1BoundObjectReference(BaseModel): | |
| description: str | |
| properties: Properties95 | |
| type: str | |
| class Status13(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties96(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| status: Status13 | |
| class IoK8sApiAuthenticationV1SelfSubjectReview(BaseModel): | |
| description: str | |
| properties: Properties96 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class UserInfo(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties97(BaseModel): | |
| userInfo: UserInfo | |
| class IoK8sApiAuthenticationV1SelfSubjectReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties97 | |
| type: str | |
| class Properties98(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthenticationV1TokenRequest(BaseModel): | |
| description: str | |
| properties: Properties98 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items91(BaseModel): | |
| type: str | |
| class Audiences(BaseModel): | |
| description: str | |
| items: Items91 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class BoundObjectRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ExpirationSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties99(BaseModel): | |
| audiences: Audiences | |
| boundObjectRef: BoundObjectRef | |
| expirationSeconds: ExpirationSeconds | |
| class IoK8sApiAuthenticationV1TokenRequestSpec(BaseModel): | |
| description: str | |
| properties: Properties99 | |
| required: List[str] | |
| type: str | |
| class ExpirationTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Token(BaseModel): | |
| description: str | |
| type: str | |
| class Properties100(BaseModel): | |
| expirationTimestamp: ExpirationTimestamp | |
| token: Token | |
| class IoK8sApiAuthenticationV1TokenRequestStatus(BaseModel): | |
| description: str | |
| properties: Properties100 | |
| required: List[str] | |
| type: str | |
| class Properties101(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthenticationV1TokenReview(BaseModel): | |
| description: str | |
| properties: Properties101 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Audiences1(BaseModel): | |
| description: str | |
| items: Items91 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties102(BaseModel): | |
| audiences: Audiences1 | |
| token: Token | |
| class IoK8sApiAuthenticationV1TokenReviewSpec(BaseModel): | |
| description: str | |
| properties: Properties102 | |
| type: str | |
| class Audiences2(BaseModel): | |
| description: str | |
| items: Items91 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Authenticated(BaseModel): | |
| description: str | |
| type: str | |
| class Error(BaseModel): | |
| description: str | |
| type: str | |
| class User(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties103(BaseModel): | |
| audiences: Audiences2 | |
| authenticated: Authenticated | |
| error: Error | |
| user: User | |
| class IoK8sApiAuthenticationV1TokenReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties103 | |
| type: str | |
| class AdditionalProperties(BaseModel): | |
| items: Items91 | |
| type: str | |
| class Extra(BaseModel): | |
| additionalProperties: AdditionalProperties | |
| description: str | |
| type: str | |
| class Groups(BaseModel): | |
| description: str | |
| items: Items91 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Username(BaseModel): | |
| description: str | |
| type: str | |
| class Properties104(BaseModel): | |
| extra: Extra | |
| groups: Groups | |
| uid: Uid | |
| username: Username | |
| class IoK8sApiAuthenticationV1UserInfo(BaseModel): | |
| description: str | |
| properties: Properties104 | |
| type: str | |
| class Properties105(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| status: Status13 | |
| class IoK8sApiAuthenticationV1alpha1SelfSubjectReview(BaseModel): | |
| description: str | |
| properties: Properties105 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties106(BaseModel): | |
| userInfo: UserInfo | |
| class IoK8sApiAuthenticationV1alpha1SelfSubjectReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties106 | |
| type: str | |
| class Properties107(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| status: Status13 | |
| class IoK8sApiAuthenticationV1beta1SelfSubjectReview(BaseModel): | |
| description: str | |
| properties: Properties107 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties108(BaseModel): | |
| userInfo: UserInfo | |
| class IoK8sApiAuthenticationV1beta1SelfSubjectReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties108 | |
| type: str | |
| class RawSelector(BaseModel): | |
| description: str | |
| type: str | |
| class Items96(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Requirements(BaseModel): | |
| description: str | |
| items: Items96 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties109(BaseModel): | |
| rawSelector: RawSelector | |
| requirements: Requirements | |
| class IoK8sApiAuthorizationV1FieldSelectorAttributes(BaseModel): | |
| description: str | |
| properties: Properties109 | |
| type: str | |
| class Requirements1(BaseModel): | |
| description: str | |
| items: Items96 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties110(BaseModel): | |
| rawSelector: RawSelector | |
| requirements: Requirements1 | |
| class IoK8sApiAuthorizationV1LabelSelectorAttributes(BaseModel): | |
| description: str | |
| properties: Properties110 | |
| type: str | |
| class Properties111(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthorizationV1LocalSubjectAccessReview(BaseModel): | |
| description: str | |
| properties: Properties111 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Verb(BaseModel): | |
| description: str | |
| type: str | |
| class Properties112(BaseModel): | |
| path: Path | |
| verb: Verb | |
| class IoK8sApiAuthorizationV1NonResourceAttributes(BaseModel): | |
| description: str | |
| properties: Properties112 | |
| type: str | |
| class Items98(BaseModel): | |
| type: str | |
| class NonResourceURLs(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties113(BaseModel): | |
| nonResourceURLs: NonResourceURLs | |
| verbs: Verbs | |
| class IoK8sApiAuthorizationV1NonResourceRule(BaseModel): | |
| description: str | |
| properties: Properties113 | |
| required: List[str] | |
| type: str | |
| class FieldSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Group(BaseModel): | |
| description: str | |
| type: str | |
| class LabelSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Resource(BaseModel): | |
| description: str | |
| type: str | |
| class Subresource(BaseModel): | |
| description: str | |
| type: str | |
| class Version(BaseModel): | |
| description: str | |
| type: str | |
| class Properties114(BaseModel): | |
| fieldSelector: FieldSelector | |
| group: Group | |
| labelSelector: LabelSelector | |
| name: Name | |
| namespace: Namespace | |
| resource: Resource | |
| subresource: Subresource | |
| verb: Verb | |
| version: Version | |
| class IoK8sApiAuthorizationV1ResourceAttributes(BaseModel): | |
| description: str | |
| properties: Properties114 | |
| type: str | |
| class ApiGroups4(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceNames3(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources4(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs1(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties115(BaseModel): | |
| apiGroups: ApiGroups4 | |
| resourceNames: ResourceNames3 | |
| resources: Resources4 | |
| verbs: Verbs1 | |
| class IoK8sApiAuthorizationV1ResourceRule(BaseModel): | |
| description: str | |
| properties: Properties115 | |
| required: List[str] | |
| type: str | |
| class Properties116(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthorizationV1SelfSubjectAccessReview(BaseModel): | |
| description: str | |
| properties: Properties116 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class NonResourceAttributes(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ResourceAttributes(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties117(BaseModel): | |
| nonResourceAttributes: NonResourceAttributes | |
| resourceAttributes: ResourceAttributes | |
| class IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec(BaseModel): | |
| description: str | |
| properties: Properties117 | |
| type: str | |
| class Properties118(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthorizationV1SelfSubjectRulesReview(BaseModel): | |
| description: str | |
| properties: Properties118 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties119(BaseModel): | |
| namespace: Namespace | |
| class IoK8sApiAuthorizationV1SelfSubjectRulesReviewSpec(BaseModel): | |
| description: str | |
| properties: Properties119 | |
| type: str | |
| class Properties120(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAuthorizationV1SubjectAccessReview(BaseModel): | |
| description: str | |
| properties: Properties120 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties1(BaseModel): | |
| items: Items98 | |
| type: str | |
| class Extra1(BaseModel): | |
| additionalProperties: AdditionalProperties1 | |
| description: str | |
| type: str | |
| class Groups1(BaseModel): | |
| description: str | |
| items: Items98 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class User1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties121(BaseModel): | |
| extra: Extra1 | |
| groups: Groups1 | |
| nonResourceAttributes: NonResourceAttributes | |
| resourceAttributes: ResourceAttributes | |
| uid: Uid | |
| user: User1 | |
| class IoK8sApiAuthorizationV1SubjectAccessReviewSpec(BaseModel): | |
| description: str | |
| properties: Properties121 | |
| type: str | |
| class Allowed(BaseModel): | |
| description: str | |
| type: str | |
| class Denied(BaseModel): | |
| description: str | |
| type: str | |
| class EvaluationError(BaseModel): | |
| description: str | |
| type: str | |
| class Properties122(BaseModel): | |
| allowed: Allowed | |
| denied: Denied | |
| evaluationError: EvaluationError | |
| reason: Reason | |
| class IoK8sApiAuthorizationV1SubjectAccessReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties122 | |
| required: List[str] | |
| type: str | |
| class Incomplete(BaseModel): | |
| description: str | |
| type: str | |
| class Items106(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class NonResourceRules(BaseModel): | |
| description: str | |
| items: Items106 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceRules3(BaseModel): | |
| description: str | |
| items: Items106 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties123(BaseModel): | |
| evaluationError: EvaluationError | |
| incomplete: Incomplete | |
| nonResourceRules: NonResourceRules | |
| resourceRules: ResourceRules3 | |
| class IoK8sApiAuthorizationV1SubjectRulesReviewStatus(BaseModel): | |
| description: str | |
| properties: Properties123 | |
| required: List[str] | |
| type: str | |
| class Properties124(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| name: Name | |
| class IoK8sApiAutoscalingV1CrossVersionObjectReference(BaseModel): | |
| description: str | |
| properties: Properties124 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties125(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAutoscalingV1HorizontalPodAutoscaler(BaseModel): | |
| description: str | |
| properties: Properties125 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items108(BaseModel): | |
| description: str | |
| items: Items106 | |
| type: str | |
| class Properties126(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items108 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAutoscalingV1HorizontalPodAutoscalerList(BaseModel): | |
| description: str | |
| properties: Properties126 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class MaxReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class MinReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class ScaleTargetRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class TargetCPUUtilizationPercentage(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties127(BaseModel): | |
| maxReplicas: MaxReplicas | |
| minReplicas: MinReplicas | |
| scaleTargetRef: ScaleTargetRef | |
| targetCPUUtilizationPercentage: TargetCPUUtilizationPercentage | |
| class IoK8sApiAutoscalingV1HorizontalPodAutoscalerSpec(BaseModel): | |
| description: str | |
| properties: Properties127 | |
| required: List[str] | |
| type: str | |
| class CurrentCPUUtilizationPercentage(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class DesiredReplicas(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class LastScaleTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties128(BaseModel): | |
| currentCPUUtilizationPercentage: CurrentCPUUtilizationPercentage | |
| currentReplicas: CurrentReplicas | |
| desiredReplicas: DesiredReplicas | |
| lastScaleTime: LastScaleTime | |
| observedGeneration: ObservedGeneration | |
| class IoK8sApiAutoscalingV1HorizontalPodAutoscalerStatus(BaseModel): | |
| description: str | |
| properties: Properties128 | |
| required: List[str] | |
| type: str | |
| class Properties129(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAutoscalingV1Scale(BaseModel): | |
| description: str | |
| properties: Properties129 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties130(BaseModel): | |
| replicas: Replicas | |
| class IoK8sApiAutoscalingV1ScaleSpec(BaseModel): | |
| description: str | |
| properties: Properties130 | |
| type: str | |
| class Selector7(BaseModel): | |
| description: str | |
| type: str | |
| class Properties131(BaseModel): | |
| replicas: Replicas | |
| selector: Selector7 | |
| class IoK8sApiAutoscalingV1ScaleStatus(BaseModel): | |
| description: str | |
| properties: Properties131 | |
| required: List[str] | |
| type: str | |
| class Container(BaseModel): | |
| description: str | |
| type: str | |
| class Target(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties132(BaseModel): | |
| container: Container | |
| name: Name | |
| target: Target | |
| class IoK8sApiAutoscalingV2ContainerResourceMetricSource(BaseModel): | |
| description: str | |
| properties: Properties132 | |
| required: List[str] | |
| type: str | |
| class Current(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties133(BaseModel): | |
| container: Container | |
| current: Current | |
| name: Name | |
| class IoK8sApiAutoscalingV2ContainerResourceMetricStatus(BaseModel): | |
| description: str | |
| properties: Properties133 | |
| required: List[str] | |
| type: str | |
| class Properties134(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| name: Name | |
| class IoK8sApiAutoscalingV2CrossVersionObjectReference(BaseModel): | |
| description: str | |
| properties: Properties134 | |
| required: List[str] | |
| type: str | |
| class Metric(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties135(BaseModel): | |
| metric: Metric | |
| target: Target | |
| class IoK8sApiAutoscalingV2ExternalMetricSource(BaseModel): | |
| description: str | |
| properties: Properties135 | |
| required: List[str] | |
| type: str | |
| class Properties136(BaseModel): | |
| current: Current | |
| metric: Metric | |
| class IoK8sApiAutoscalingV2ExternalMetricStatus(BaseModel): | |
| description: str | |
| properties: Properties136 | |
| required: List[str] | |
| type: str | |
| class PeriodSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Value(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties137(BaseModel): | |
| periodSeconds: PeriodSeconds | |
| type: Type | |
| value: Value | |
| class IoK8sApiAutoscalingV2HPAScalingPolicy(BaseModel): | |
| description: str | |
| properties: Properties137 | |
| required: List[str] | |
| type: str | |
| class Items110(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Policies(BaseModel): | |
| description: str | |
| items: Items110 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SelectPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class StabilizationWindowSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties138(BaseModel): | |
| policies: Policies | |
| selectPolicy: SelectPolicy | |
| stabilizationWindowSeconds: StabilizationWindowSeconds | |
| class IoK8sApiAutoscalingV2HPAScalingRules(BaseModel): | |
| description: str | |
| properties: Properties138 | |
| type: str | |
| class Properties139(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status13 | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscaler(BaseModel): | |
| description: str | |
| properties: Properties139 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ScaleDown(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ScaleUp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties140(BaseModel): | |
| scaleDown: ScaleDown | |
| scaleUp: ScaleUp | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior(BaseModel): | |
| description: str | |
| properties: Properties140 | |
| type: str | |
| class Status25(BaseModel): | |
| description: str | |
| type: str | |
| class Properties141(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| reason: Reason | |
| status: Status25 | |
| type: Type | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition(BaseModel): | |
| description: str | |
| properties: Properties141 | |
| required: List[str] | |
| type: str | |
| class Items111(BaseModel): | |
| description: str | |
| items: Items110 | |
| type: str | |
| class Properties142(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items111 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscalerList(BaseModel): | |
| description: str | |
| properties: Properties142 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Behavior(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items113(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Metrics(BaseModel): | |
| description: str | |
| items: Items113 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties143(BaseModel): | |
| behavior: Behavior | |
| maxReplicas: MaxReplicas | |
| metrics: Metrics | |
| minReplicas: MinReplicas | |
| scaleTargetRef: ScaleTargetRef | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscalerSpec(BaseModel): | |
| description: str | |
| properties: Properties143 | |
| required: List[str] | |
| type: str | |
| class Conditions8(BaseModel): | |
| description: str | |
| items: Items113 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class CurrentMetrics(BaseModel): | |
| description: str | |
| items: Items113 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties144(BaseModel): | |
| conditions: Conditions8 | |
| currentMetrics: CurrentMetrics | |
| currentReplicas: CurrentReplicas | |
| desiredReplicas: DesiredReplicas | |
| lastScaleTime: LastScaleTime | |
| observedGeneration: ObservedGeneration | |
| class IoK8sApiAutoscalingV2HorizontalPodAutoscalerStatus(BaseModel): | |
| description: str | |
| properties: Properties144 | |
| required: List[str] | |
| type: str | |
| class Selector8(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties145(BaseModel): | |
| name: Name | |
| selector: Selector8 | |
| class IoK8sApiAutoscalingV2MetricIdentifier(BaseModel): | |
| description: str | |
| properties: Properties145 | |
| required: List[str] | |
| type: str | |
| class ContainerResource(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class External(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Object(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Pods(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Resource1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties146(BaseModel): | |
| containerResource: ContainerResource | |
| external: External | |
| object: Object | |
| pods: Pods | |
| resource: Resource1 | |
| type: Type | |
| class IoK8sApiAutoscalingV2MetricSpec(BaseModel): | |
| description: str | |
| properties: Properties146 | |
| required: List[str] | |
| type: str | |
| class Properties147(BaseModel): | |
| containerResource: ContainerResource | |
| external: External | |
| object: Object | |
| pods: Pods | |
| resource: Resource1 | |
| type: Type | |
| class IoK8sApiAutoscalingV2MetricStatus(BaseModel): | |
| description: str | |
| properties: Properties147 | |
| required: List[str] | |
| type: str | |
| class AverageUtilization(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class AverageValue(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Value1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties148(BaseModel): | |
| averageUtilization: AverageUtilization | |
| averageValue: AverageValue | |
| type: Type | |
| value: Value1 | |
| class IoK8sApiAutoscalingV2MetricTarget(BaseModel): | |
| description: str | |
| properties: Properties148 | |
| required: List[str] | |
| type: str | |
| class Properties149(BaseModel): | |
| averageUtilization: AverageUtilization | |
| averageValue: AverageValue | |
| value: Value1 | |
| class IoK8sApiAutoscalingV2MetricValueStatus(BaseModel): | |
| description: str | |
| properties: Properties149 | |
| type: str | |
| class DescribedObject(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties150(BaseModel): | |
| describedObject: DescribedObject | |
| metric: Metric | |
| target: Target | |
| class IoK8sApiAutoscalingV2ObjectMetricSource(BaseModel): | |
| description: str | |
| properties: Properties150 | |
| required: List[str] | |
| type: str | |
| class Properties151(BaseModel): | |
| current: Current | |
| describedObject: DescribedObject | |
| metric: Metric | |
| class IoK8sApiAutoscalingV2ObjectMetricStatus(BaseModel): | |
| description: str | |
| properties: Properties151 | |
| required: List[str] | |
| type: str | |
| class Properties152(BaseModel): | |
| metric: Metric | |
| target: Target | |
| class IoK8sApiAutoscalingV2PodsMetricSource(BaseModel): | |
| description: str | |
| properties: Properties152 | |
| required: List[str] | |
| type: str | |
| class Properties153(BaseModel): | |
| current: Current | |
| metric: Metric | |
| class IoK8sApiAutoscalingV2PodsMetricStatus(BaseModel): | |
| description: str | |
| properties: Properties153 | |
| required: List[str] | |
| type: str | |
| class Properties154(BaseModel): | |
| name: Name | |
| target: Target | |
| class IoK8sApiAutoscalingV2ResourceMetricSource(BaseModel): | |
| description: str | |
| properties: Properties154 | |
| required: List[str] | |
| type: str | |
| class Properties155(BaseModel): | |
| current: Current | |
| name: Name | |
| class IoK8sApiAutoscalingV2ResourceMetricStatus(BaseModel): | |
| description: str | |
| properties: Properties155 | |
| required: List[str] | |
| type: str | |
| class Status26(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties156(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status26 | |
| class IoK8sApiBatchV1CronJob(BaseModel): | |
| description: str | |
| properties: Properties156 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items116(BaseModel): | |
| description: str | |
| items: Items113 | |
| type: str | |
| class Properties157(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items116 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiBatchV1CronJobList(BaseModel): | |
| description: str | |
| properties: Properties157 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ConcurrencyPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class FailedJobsHistoryLimit(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class JobTemplate(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Schedule(BaseModel): | |
| description: str | |
| type: str | |
| class StartingDeadlineSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class SuccessfulJobsHistoryLimit(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Suspend(BaseModel): | |
| description: str | |
| type: str | |
| class TimeZone(BaseModel): | |
| description: str | |
| type: str | |
| class Properties158(BaseModel): | |
| concurrencyPolicy: ConcurrencyPolicy | |
| failedJobsHistoryLimit: FailedJobsHistoryLimit | |
| jobTemplate: JobTemplate | |
| schedule: Schedule | |
| startingDeadlineSeconds: StartingDeadlineSeconds | |
| successfulJobsHistoryLimit: SuccessfulJobsHistoryLimit | |
| suspend: Suspend | |
| timeZone: TimeZone | |
| class IoK8sApiBatchV1CronJobSpec(BaseModel): | |
| description: str | |
| properties: Properties158 | |
| required: List[str] | |
| type: str | |
| class Items118(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Active(BaseModel): | |
| description: str | |
| items: Items118 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class LastScheduleTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class LastSuccessfulTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties159(BaseModel): | |
| active: Active | |
| lastScheduleTime: LastScheduleTime | |
| lastSuccessfulTime: LastSuccessfulTime | |
| class IoK8sApiBatchV1CronJobStatus(BaseModel): | |
| description: str | |
| properties: Properties159 | |
| type: str | |
| class Properties160(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata | |
| spec: Spec | |
| status: Status26 | |
| class IoK8sApiBatchV1Job(BaseModel): | |
| description: str | |
| properties: Properties160 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class LastProbeTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Status28(BaseModel): | |
| description: str | |
| type: str | |
| class Properties161(BaseModel): | |
| lastProbeTime: LastProbeTime | |
| lastTransitionTime: LastTransitionTime | |
| message: Message | |
| reason: Reason | |
| status: Status28 | |
| type: Type | |
| class IoK8sApiBatchV1JobCondition(BaseModel): | |
| description: str | |
| properties: Properties161 | |
| required: List[str] | |
| type: str | |
| class Items119(BaseModel): | |
| description: str | |
| items: Items118 | |
| type: str | |
| class Properties162(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items119 | |
| kind: Kind | |
| metadata: Metadata | |
| class IoK8sApiBatchV1JobList(BaseModel): | |
| description: str | |
| properties: Properties162 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ActiveDeadlineSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class BackoffLimit(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class BackoffLimitPerIndex(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class CompletionMode(BaseModel): | |
| description: str | |
| type: str | |
| class Completions(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class ManagedBy(BaseModel): | |
| description: str | |
| type: str | |
| class ManualSelector(BaseModel): | |
| description: str | |
| type: str | |
| class MaxFailedIndexes(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Parallelism(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class PodFailurePolicy(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PodReplacementPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class SuccessPolicy(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class TtlSecondsAfterFinished(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties163(BaseModel): | |
| activeDeadlineSeconds: ActiveDeadlineSeconds | |
| backoffLimit: BackoffLimit | |
| backoffLimitPerIndex: BackoffLimitPerIndex | |
| completionMode: CompletionMode | |
| completions: Completions | |
| managedBy: ManagedBy | |
| manualSelector: ManualSelector | |
| maxFailedIndexes: MaxFailedIndexes | |
| parallelism: Parallelism | |
| podFailurePolicy: PodFailurePolicy | |
| podReplacementPolicy: PodReplacementPolicy | |
| selector: Selector8 | |
| successPolicy: SuccessPolicy | |
| suspend: Suspend | |
| template: Template | |
| ttlSecondsAfterFinished: TtlSecondsAfterFinished | |
| class IoK8sApiBatchV1JobSpec(BaseModel): | |
| description: str | |
| properties: Properties163 | |
| required: List[str] | |
| type: str | |
| class Active1(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class CompletedIndexes(BaseModel): | |
| description: str | |
| type: str | |
| class CompletionTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items121(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions9(BaseModel): | |
| description: str | |
| items: Items121 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Failed(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class FailedIndexes(BaseModel): | |
| description: str | |
| type: str | |
| class Ready(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class StartTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Succeeded(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Terminating(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class UncountedTerminatedPods(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties164(BaseModel): | |
| active: Active1 | |
| completedIndexes: CompletedIndexes | |
| completionTime: CompletionTime | |
| conditions: Conditions9 | |
| failed: Failed | |
| failedIndexes: FailedIndexes | |
| ready: Ready | |
| startTime: StartTime | |
| succeeded: Succeeded | |
| terminating: Terminating | |
| uncountedTerminatedPods: UncountedTerminatedPods | |
| class IoK8sApiBatchV1JobStatus(BaseModel): | |
| description: str | |
| properties: Properties164 | |
| type: str | |
| class Properties165(BaseModel): | |
| metadata: Metadata | |
| spec: Spec | |
| class IoK8sApiBatchV1JobTemplateSpec(BaseModel): | |
| description: str | |
| properties: Properties165 | |
| type: str | |
| class Rules2(BaseModel): | |
| description: str | |
| items: Items121 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties166(BaseModel): | |
| rules: Rules2 | |
| class IoK8sApiBatchV1PodFailurePolicy(BaseModel): | |
| description: str | |
| properties: Properties166 | |
| required: List[str] | |
| type: str | |
| class ContainerName(BaseModel): | |
| description: str | |
| type: str | |
| class Operator(BaseModel): | |
| description: str | |
| type: str | |
| class Items123(BaseModel): | |
| format: str | |
| type: str | |
| class Values(BaseModel): | |
| description: str | |
| items: Items123 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties167(BaseModel): | |
| containerName: ContainerName | |
| operator: Operator | |
| values: Values | |
| class IoK8sApiBatchV1PodFailurePolicyOnExitCodesRequirement(BaseModel): | |
| description: str | |
| properties: Properties167 | |
| required: List[str] | |
| type: str | |
| class Properties168(BaseModel): | |
| status: Status28 | |
| type: Type | |
| class IoK8sApiBatchV1PodFailurePolicyOnPodConditionsPattern(BaseModel): | |
| description: str | |
| properties: Properties168 | |
| required: List[str] | |
| type: str | |
| class Action(BaseModel): | |
| description: str | |
| type: str | |
| class OnExitCodes(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items124(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class OnPodConditions(BaseModel): | |
| description: str | |
| items: Items124 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties169(BaseModel): | |
| action: Action | |
| onExitCodes: OnExitCodes | |
| onPodConditions: OnPodConditions | |
| class IoK8sApiBatchV1PodFailurePolicyRule(BaseModel): | |
| description: str | |
| properties: Properties169 | |
| required: List[str] | |
| type: str | |
| class Rules3(BaseModel): | |
| description: str | |
| items: Items124 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties170(BaseModel): | |
| rules: Rules3 | |
| class IoK8sApiBatchV1SuccessPolicy(BaseModel): | |
| description: str | |
| properties: Properties170 | |
| required: List[str] | |
| type: str | |
| class SucceededCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class SucceededIndexes(BaseModel): | |
| description: str | |
| type: str | |
| class Properties171(BaseModel): | |
| succeededCount: SucceededCount | |
| succeededIndexes: SucceededIndexes | |
| class IoK8sApiBatchV1SuccessPolicyRule(BaseModel): | |
| description: str | |
| properties: Properties171 | |
| type: str | |
| class Items126(BaseModel): | |
| type: str | |
| class Failed1(BaseModel): | |
| description: str | |
| items: Items126 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Succeeded1(BaseModel): | |
| description: str | |
| items: Items126 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties172(BaseModel): | |
| failed: Failed1 | |
| succeeded: Succeeded1 | |
| class IoK8sApiBatchV1UncountedTerminatedPods(BaseModel): | |
| description: str | |
| properties: Properties172 | |
| type: str | |
| class Metadata47(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Status30(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties173(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata47 | |
| spec: Spec | |
| status: Status30 | |
| class IoK8sApiCertificatesV1CertificateSigningRequest(BaseModel): | |
| description: str | |
| properties: Properties173 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status31(BaseModel): | |
| description: str | |
| type: str | |
| class Properties174(BaseModel): | |
| lastTransitionTime: LastTransitionTime | |
| lastUpdateTime: LastUpdateTime | |
| message: Message | |
| reason: Reason | |
| status: Status31 | |
| type: Type | |
| class IoK8sApiCertificatesV1CertificateSigningRequestCondition(BaseModel): | |
| description: str | |
| properties: Properties174 | |
| required: List[str] | |
| type: str | |
| class Items129(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items128(BaseModel): | |
| description: str | |
| items: Items129 | |
| type: str | |
| class Properties175(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items128 | |
| kind: Kind | |
| metadata: Metadata47 | |
| class IoK8sApiCertificatesV1CertificateSigningRequestList(BaseModel): | |
| description: str | |
| properties: Properties175 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items130(BaseModel): | |
| type: str | |
| class AdditionalProperties2(BaseModel): | |
| items: Items130 | |
| type: str | |
| class Extra2(BaseModel): | |
| additionalProperties: AdditionalProperties2 | |
| description: str | |
| type: str | |
| class Groups2(BaseModel): | |
| description: str | |
| items: Items130 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Request(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SignerName(BaseModel): | |
| description: str | |
| type: str | |
| class Usages(BaseModel): | |
| description: str | |
| items: Items130 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties176(BaseModel): | |
| expirationSeconds: ExpirationSeconds | |
| extra: Extra2 | |
| groups: Groups2 | |
| request: Request | |
| signerName: SignerName | |
| uid: Uid | |
| usages: Usages | |
| username: Username | |
| class IoK8sApiCertificatesV1CertificateSigningRequestSpec(BaseModel): | |
| description: str | |
| properties: Properties176 | |
| required: List[str] | |
| type: str | |
| class Certificate(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items133(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions10(BaseModel): | |
| description: str | |
| items: Items133 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties177(BaseModel): | |
| certificate: Certificate | |
| conditions: Conditions10 | |
| class IoK8sApiCertificatesV1CertificateSigningRequestStatus(BaseModel): | |
| description: str | |
| properties: Properties177 | |
| type: str | |
| class Metadata49(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties178(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCertificatesV1alpha1ClusterTrustBundle(BaseModel): | |
| description: str | |
| properties: Properties178 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items134(BaseModel): | |
| description: str | |
| items: Items133 | |
| type: str | |
| class Properties179(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items134 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCertificatesV1alpha1ClusterTrustBundleList(BaseModel): | |
| description: str | |
| properties: Properties179 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class TrustBundle(BaseModel): | |
| description: str | |
| type: str | |
| class Properties180(BaseModel): | |
| signerName: SignerName | |
| trustBundle: TrustBundle | |
| class IoK8sApiCertificatesV1alpha1ClusterTrustBundleSpec(BaseModel): | |
| description: str | |
| properties: Properties180 | |
| required: List[str] | |
| type: str | |
| class Properties181(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCoordinationV1Lease(BaseModel): | |
| description: str | |
| properties: Properties181 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items137(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items136(BaseModel): | |
| description: str | |
| items: Items137 | |
| type: str | |
| class Properties182(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items136 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoordinationV1LeaseList(BaseModel): | |
| description: str | |
| properties: Properties182 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AcquireTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class HolderIdentity(BaseModel): | |
| description: str | |
| type: str | |
| class LeaseDurationSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class LeaseTransitions(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class PreferredHolder(BaseModel): | |
| description: str | |
| type: str | |
| class RenewTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Strategy1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties183(BaseModel): | |
| acquireTime: AcquireTime | |
| holderIdentity: HolderIdentity | |
| leaseDurationSeconds: LeaseDurationSeconds | |
| leaseTransitions: LeaseTransitions | |
| preferredHolder: PreferredHolder | |
| renewTime: RenewTime | |
| strategy: Strategy1 | |
| class IoK8sApiCoordinationV1LeaseSpec(BaseModel): | |
| description: str | |
| properties: Properties183 | |
| type: str | |
| class Properties184(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCoordinationV1alpha1LeaseCandidate(BaseModel): | |
| description: str | |
| properties: Properties184 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items139(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items138(BaseModel): | |
| description: str | |
| items: Items139 | |
| type: str | |
| class Properties185(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items138 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoordinationV1alpha1LeaseCandidateList(BaseModel): | |
| description: str | |
| properties: Properties185 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class BinaryVersion(BaseModel): | |
| description: str | |
| type: str | |
| class EmulationVersion(BaseModel): | |
| description: str | |
| type: str | |
| class LeaseName(BaseModel): | |
| description: str | |
| type: str | |
| class PingTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items140(BaseModel): | |
| type: str | |
| class PreferredStrategies(BaseModel): | |
| description: str | |
| items: Items140 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties186(BaseModel): | |
| binaryVersion: BinaryVersion | |
| emulationVersion: EmulationVersion | |
| leaseName: LeaseName | |
| pingTime: PingTime | |
| preferredStrategies: PreferredStrategies | |
| renewTime: RenewTime | |
| class IoK8sApiCoordinationV1alpha1LeaseCandidateSpec(BaseModel): | |
| description: str | |
| properties: Properties186 | |
| required: List[str] | |
| type: str | |
| class FsType(BaseModel): | |
| description: str | |
| type: str | |
| class ReadOnly(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeID(BaseModel): | |
| description: str | |
| type: str | |
| class Properties187(BaseModel): | |
| fsType: FsType | |
| partition: Partition | |
| readOnly: ReadOnly | |
| volumeID: VolumeID | |
| class IoK8sApiCoreV1AWSElasticBlockStoreVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties187 | |
| required: List[str] | |
| type: str | |
| class NodeAffinity(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PodAffinity(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PodAntiAffinity(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties188(BaseModel): | |
| nodeAffinity: NodeAffinity | |
| podAffinity: PodAffinity | |
| podAntiAffinity: PodAntiAffinity | |
| class IoK8sApiCoreV1Affinity(BaseModel): | |
| description: str | |
| properties: Properties188 | |
| type: str | |
| class LocalhostProfile(BaseModel): | |
| description: str | |
| type: str | |
| class Properties189(BaseModel): | |
| localhostProfile: LocalhostProfile | |
| type: Type | |
| class FieldsToDiscriminateBy(BaseModel): | |
| localhostProfile: str | |
| class XKubernetesUnion(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiCoreV1AppArmorProfile(BaseModel): | |
| description: str | |
| properties: Properties189 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class DevicePath(BaseModel): | |
| description: str | |
| type: str | |
| class Properties190(BaseModel): | |
| devicePath: DevicePath | |
| name: Name | |
| class IoK8sApiCoreV1AttachedVolume(BaseModel): | |
| description: str | |
| properties: Properties190 | |
| required: List[str] | |
| type: str | |
| class CachingMode(BaseModel): | |
| description: str | |
| type: str | |
| class DiskName(BaseModel): | |
| description: str | |
| type: str | |
| class DiskURI(BaseModel): | |
| description: str | |
| type: str | |
| class Properties191(BaseModel): | |
| cachingMode: CachingMode | |
| diskName: DiskName | |
| diskURI: DiskURI | |
| fsType: FsType | |
| kind: Kind | |
| readOnly: ReadOnly | |
| class IoK8sApiCoreV1AzureDiskVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties191 | |
| required: List[str] | |
| type: str | |
| class SecretName(BaseModel): | |
| description: str | |
| type: str | |
| class SecretNamespace(BaseModel): | |
| description: str | |
| type: str | |
| class ShareName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties192(BaseModel): | |
| readOnly: ReadOnly | |
| secretName: SecretName | |
| secretNamespace: SecretNamespace | |
| shareName: ShareName | |
| class IoK8sApiCoreV1AzureFilePersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties192 | |
| required: List[str] | |
| type: str | |
| class Properties193(BaseModel): | |
| readOnly: ReadOnly | |
| secretName: SecretName | |
| shareName: ShareName | |
| class IoK8sApiCoreV1AzureFileVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties193 | |
| required: List[str] | |
| type: str | |
| class Properties194(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| target: Target | |
| class IoK8sApiCoreV1Binding(BaseModel): | |
| description: str | |
| properties: Properties194 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ControllerExpandSecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ControllerPublishSecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Driver(BaseModel): | |
| description: str | |
| type: str | |
| class NodeExpandSecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class NodePublishSecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class NodeStageSecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AdditionalProperties3(BaseModel): | |
| type: str | |
| class VolumeAttributes(BaseModel): | |
| additionalProperties: AdditionalProperties3 | |
| description: str | |
| type: str | |
| class VolumeHandle(BaseModel): | |
| description: str | |
| type: str | |
| class Properties195(BaseModel): | |
| controllerExpandSecretRef: ControllerExpandSecretRef | |
| controllerPublishSecretRef: ControllerPublishSecretRef | |
| driver: Driver | |
| fsType: FsType | |
| nodeExpandSecretRef: NodeExpandSecretRef | |
| nodePublishSecretRef: NodePublishSecretRef | |
| nodeStageSecretRef: NodeStageSecretRef | |
| readOnly: ReadOnly | |
| volumeAttributes: VolumeAttributes | |
| volumeHandle: VolumeHandle | |
| class IoK8sApiCoreV1CSIPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties195 | |
| required: List[str] | |
| type: str | |
| class VolumeAttributes1(BaseModel): | |
| additionalProperties: AdditionalProperties3 | |
| description: str | |
| type: str | |
| class Properties196(BaseModel): | |
| driver: Driver | |
| fsType: FsType | |
| nodePublishSecretRef: NodePublishSecretRef | |
| readOnly: ReadOnly | |
| volumeAttributes: VolumeAttributes1 | |
| class IoK8sApiCoreV1CSIVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties196 | |
| required: List[str] | |
| type: str | |
| class Add(BaseModel): | |
| description: str | |
| items: Items140 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Drop(BaseModel): | |
| description: str | |
| items: Items140 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties197(BaseModel): | |
| add: Add | |
| drop: Drop | |
| class IoK8sApiCoreV1Capabilities(BaseModel): | |
| description: str | |
| properties: Properties197 | |
| type: str | |
| class Monitors(BaseModel): | |
| description: str | |
| items: Items140 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SecretFile(BaseModel): | |
| description: str | |
| type: str | |
| class SecretRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties198(BaseModel): | |
| monitors: Monitors | |
| path: Path | |
| readOnly: ReadOnly | |
| secretFile: SecretFile | |
| secretRef: SecretRef | |
| user: User1 | |
| class IoK8sApiCoreV1CephFSPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties198 | |
| required: List[str] | |
| type: str | |
| class Monitors1(BaseModel): | |
| description: str | |
| items: Items140 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties199(BaseModel): | |
| monitors: Monitors1 | |
| path: Path | |
| readOnly: ReadOnly | |
| secretFile: SecretFile | |
| secretRef: SecretRef | |
| user: User1 | |
| class IoK8sApiCoreV1CephFSVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties199 | |
| required: List[str] | |
| type: str | |
| class Properties200(BaseModel): | |
| fsType: FsType | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| volumeID: VolumeID | |
| class IoK8sApiCoreV1CinderPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties200 | |
| required: List[str] | |
| type: str | |
| class Properties201(BaseModel): | |
| fsType: FsType | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| volumeID: VolumeID | |
| class IoK8sApiCoreV1CinderVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties201 | |
| required: List[str] | |
| type: str | |
| class Properties202(BaseModel): | |
| timeoutSeconds: TimeoutSeconds | |
| class IoK8sApiCoreV1ClientIPConfig(BaseModel): | |
| description: str | |
| properties: Properties202 | |
| type: str | |
| class OptionalModel(BaseModel): | |
| description: str | |
| type: str | |
| class Properties203(BaseModel): | |
| labelSelector: LabelSelector | |
| name: Name | |
| optional: OptionalModel | |
| path: Path | |
| signerName: SignerName | |
| class IoK8sApiCoreV1ClusterTrustBundleProjection(BaseModel): | |
| description: str | |
| properties: Properties203 | |
| required: List[str] | |
| type: str | |
| class Properties204(BaseModel): | |
| error: Error | |
| message: Message | |
| status: Status31 | |
| type: Type | |
| class IoK8sApiCoreV1ComponentCondition(BaseModel): | |
| description: str | |
| properties: Properties204 | |
| required: List[str] | |
| type: str | |
| class Items145(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions11(BaseModel): | |
| description: str | |
| items: Items145 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties205(BaseModel): | |
| apiVersion: ApiVersion | |
| conditions: Conditions11 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ComponentStatus(BaseModel): | |
| description: str | |
| properties: Properties205 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items146(BaseModel): | |
| description: str | |
| items: Items145 | |
| type: str | |
| class Properties206(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items146 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ComponentStatusList(BaseModel): | |
| description: str | |
| properties: Properties206 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties5(BaseModel): | |
| format: str | |
| type: str | |
| class BinaryData(BaseModel): | |
| additionalProperties: AdditionalProperties5 | |
| description: str | |
| type: str | |
| class AdditionalProperties6(BaseModel): | |
| type: str | |
| class Data1(BaseModel): | |
| additionalProperties: AdditionalProperties6 | |
| description: str | |
| type: str | |
| class Immutable(BaseModel): | |
| description: str | |
| type: str | |
| class Properties207(BaseModel): | |
| apiVersion: ApiVersion | |
| binaryData: BinaryData | |
| data: Data1 | |
| immutable: Immutable | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ConfigMap(BaseModel): | |
| description: str | |
| properties: Properties207 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties208(BaseModel): | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1ConfigMapEnvSource(BaseModel): | |
| description: str | |
| properties: Properties208 | |
| type: str | |
| class Properties209(BaseModel): | |
| key: Key | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1ConfigMapKeySelector(BaseModel): | |
| description: str | |
| properties: Properties209 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items149(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items148(BaseModel): | |
| description: str | |
| items: Items149 | |
| type: str | |
| class Properties210(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items148 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ConfigMapList(BaseModel): | |
| description: str | |
| properties: Properties210 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class KubeletConfigKey(BaseModel): | |
| description: str | |
| type: str | |
| class ResourceVersion(BaseModel): | |
| description: str | |
| type: str | |
| class Properties211(BaseModel): | |
| kubeletConfigKey: KubeletConfigKey | |
| name: Name | |
| namespace: Namespace | |
| resourceVersion: ResourceVersion | |
| uid: Uid | |
| class IoK8sApiCoreV1ConfigMapNodeConfigSource(BaseModel): | |
| description: str | |
| properties: Properties211 | |
| required: List[str] | |
| type: str | |
| class Items151(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items150(BaseModel): | |
| description: str | |
| items: Items151 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties212(BaseModel): | |
| items: Items150 | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1ConfigMapProjection(BaseModel): | |
| description: str | |
| properties: Properties212 | |
| type: str | |
| class DefaultMode(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Items153(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items152(BaseModel): | |
| description: str | |
| items: Items153 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties213(BaseModel): | |
| defaultMode: DefaultMode | |
| items: Items152 | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1ConfigMapVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties213 | |
| type: str | |
| class Items154(BaseModel): | |
| type: str | |
| class Args(BaseModel): | |
| description: str | |
| items: Items154 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Command(BaseModel): | |
| description: str | |
| items: Items154 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items156(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Env(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class EnvFrom(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Image(BaseModel): | |
| description: str | |
| type: str | |
| class ImagePullPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Lifecycle(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class LivenessProbe(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Ports(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ReadinessProbe(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ResizePolicy(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources5(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class RestartPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class SecurityContext(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class StartupProbe(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Stdin(BaseModel): | |
| description: str | |
| type: str | |
| class StdinOnce(BaseModel): | |
| description: str | |
| type: str | |
| class TerminationMessagePath(BaseModel): | |
| description: str | |
| type: str | |
| class TerminationMessagePolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Tty(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeDevices(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class VolumeMounts(BaseModel): | |
| description: str | |
| items: Items156 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class WorkingDir(BaseModel): | |
| description: str | |
| type: str | |
| class Properties214(BaseModel): | |
| args: Args | |
| command: Command | |
| env: Env | |
| envFrom: EnvFrom | |
| image: Image | |
| imagePullPolicy: ImagePullPolicy | |
| lifecycle: Lifecycle | |
| livenessProbe: LivenessProbe | |
| name: Name | |
| ports: Ports | |
| readinessProbe: ReadinessProbe | |
| resizePolicy: ResizePolicy | |
| resources: Resources5 | |
| restartPolicy: RestartPolicy | |
| securityContext: SecurityContext | |
| startupProbe: StartupProbe | |
| stdin: Stdin | |
| stdinOnce: StdinOnce | |
| terminationMessagePath: TerminationMessagePath | |
| terminationMessagePolicy: TerminationMessagePolicy | |
| tty: Tty | |
| volumeDevices: VolumeDevices | |
| volumeMounts: VolumeMounts | |
| workingDir: WorkingDir | |
| class IoK8sApiCoreV1Container(BaseModel): | |
| description: str | |
| properties: Properties214 | |
| required: List[str] | |
| type: str | |
| class Items162(BaseModel): | |
| type: str | |
| class Names(BaseModel): | |
| description: str | |
| items: Items162 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SizeBytes(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties215(BaseModel): | |
| names: Names | |
| sizeBytes: SizeBytes | |
| class IoK8sApiCoreV1ContainerImage(BaseModel): | |
| description: str | |
| properties: Properties215 | |
| type: str | |
| class ContainerPort(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class HostIP(BaseModel): | |
| description: str | |
| type: str | |
| class HostPort(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Protocol(BaseModel): | |
| description: str | |
| type: str | |
| class Properties216(BaseModel): | |
| containerPort: ContainerPort | |
| hostIP: HostIP | |
| hostPort: HostPort | |
| name: Name | |
| protocol: Protocol | |
| class IoK8sApiCoreV1ContainerPort(BaseModel): | |
| description: str | |
| properties: Properties216 | |
| required: List[str] | |
| type: str | |
| class ResourceName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties217(BaseModel): | |
| resourceName: ResourceName | |
| restartPolicy: RestartPolicy | |
| class IoK8sApiCoreV1ContainerResizePolicy(BaseModel): | |
| description: str | |
| properties: Properties217 | |
| required: List[str] | |
| type: str | |
| class Running(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Terminated(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Waiting(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties218(BaseModel): | |
| running: Running | |
| terminated: Terminated | |
| waiting: Waiting | |
| class IoK8sApiCoreV1ContainerState(BaseModel): | |
| description: str | |
| properties: Properties218 | |
| type: str | |
| class StartedAt(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties219(BaseModel): | |
| startedAt: StartedAt | |
| class IoK8sApiCoreV1ContainerStateRunning(BaseModel): | |
| description: str | |
| properties: Properties219 | |
| type: str | |
| class ContainerID(BaseModel): | |
| description: str | |
| type: str | |
| class ExitCode(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class FinishedAt(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Signal(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties220(BaseModel): | |
| containerID: ContainerID | |
| exitCode: ExitCode | |
| finishedAt: FinishedAt | |
| message: Message | |
| reason: Reason | |
| signal: Signal | |
| startedAt: StartedAt | |
| class IoK8sApiCoreV1ContainerStateTerminated(BaseModel): | |
| description: str | |
| properties: Properties220 | |
| required: List[str] | |
| type: str | |
| class Properties221(BaseModel): | |
| message: Message | |
| reason: Reason | |
| class IoK8sApiCoreV1ContainerStateWaiting(BaseModel): | |
| description: str | |
| properties: Properties221 | |
| type: str | |
| class AdditionalProperties7(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AllocatedResources(BaseModel): | |
| additionalProperties: AdditionalProperties7 | |
| description: str | |
| type: str | |
| class Items163(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AllocatedResourcesStatus(BaseModel): | |
| description: str | |
| items: Items163 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ImageID(BaseModel): | |
| description: str | |
| type: str | |
| class LastState(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Ready1(BaseModel): | |
| description: str | |
| type: str | |
| class RestartCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Started(BaseModel): | |
| description: str | |
| type: str | |
| class State(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class User4(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class VolumeMounts1(BaseModel): | |
| description: str | |
| items: Items163 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties222(BaseModel): | |
| allocatedResources: AllocatedResources | |
| allocatedResourcesStatus: AllocatedResourcesStatus | |
| containerID: ContainerID | |
| image: Image | |
| imageID: ImageID | |
| lastState: LastState | |
| name: Name | |
| ready: Ready1 | |
| resources: Resources5 | |
| restartCount: RestartCount | |
| started: Started | |
| state: State | |
| user: User4 | |
| volumeMounts: VolumeMounts1 | |
| class IoK8sApiCoreV1ContainerStatus(BaseModel): | |
| description: str | |
| properties: Properties222 | |
| required: List[str] | |
| type: str | |
| class Linux(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties223(BaseModel): | |
| linux: Linux | |
| class IoK8sApiCoreV1ContainerUser(BaseModel): | |
| description: str | |
| properties: Properties223 | |
| type: str | |
| class Items165(BaseModel): | |
| description: str | |
| items: Items163 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties225(BaseModel): | |
| items: Items165 | |
| class IoK8sApiCoreV1DownwardAPIProjection(BaseModel): | |
| description: str | |
| properties: Properties225 | |
| type: str | |
| class FieldRef3(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Mode(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class ResourceFieldRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties226(BaseModel): | |
| fieldRef: FieldRef3 | |
| mode: Mode | |
| path: Path | |
| resourceFieldRef: ResourceFieldRef | |
| class IoK8sApiCoreV1DownwardAPIVolumeFile(BaseModel): | |
| description: str | |
| properties: Properties226 | |
| required: List[str] | |
| type: str | |
| class Items168(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items167(BaseModel): | |
| description: str | |
| items: Items168 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties227(BaseModel): | |
| defaultMode: DefaultMode | |
| items: Items167 | |
| class IoK8sApiCoreV1DownwardAPIVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties227 | |
| type: str | |
| class Medium(BaseModel): | |
| description: str | |
| type: str | |
| class SizeLimit(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties228(BaseModel): | |
| medium: Medium | |
| sizeLimit: SizeLimit | |
| class IoK8sApiCoreV1EmptyDirVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties228 | |
| type: str | |
| class Hostname(BaseModel): | |
| description: str | |
| type: str | |
| class Ip(BaseModel): | |
| description: str | |
| type: str | |
| class NodeName(BaseModel): | |
| description: str | |
| type: str | |
| class TargetRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties229(BaseModel): | |
| hostname: Hostname | |
| ip: Ip | |
| nodeName: NodeName | |
| targetRef: TargetRef | |
| class IoK8sApiCoreV1EndpointAddress(BaseModel): | |
| description: str | |
| properties: Properties229 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class AppProtocol(BaseModel): | |
| description: str | |
| type: str | |
| class Properties230(BaseModel): | |
| appProtocol: AppProtocol | |
| name: Name | |
| port: Port | |
| protocol: Protocol | |
| class IoK8sApiCoreV1EndpointPort(BaseModel): | |
| description: str | |
| properties: Properties230 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items169(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Addresses(BaseModel): | |
| description: str | |
| items: Items169 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class NotReadyAddresses(BaseModel): | |
| description: str | |
| items: Items169 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Ports1(BaseModel): | |
| description: str | |
| items: Items169 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties231(BaseModel): | |
| addresses: Addresses | |
| notReadyAddresses: NotReadyAddresses | |
| ports: Ports1 | |
| class IoK8sApiCoreV1EndpointSubset(BaseModel): | |
| description: str | |
| properties: Properties231 | |
| type: str | |
| class Subsets(BaseModel): | |
| description: str | |
| items: Items169 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties232(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| subsets: Subsets | |
| class IoK8sApiCoreV1Endpoints(BaseModel): | |
| description: str | |
| properties: Properties232 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items173(BaseModel): | |
| description: str | |
| items: Items169 | |
| type: str | |
| class Properties233(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items173 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1EndpointsList(BaseModel): | |
| description: str | |
| properties: Properties233 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ConfigMapRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Prefix(BaseModel): | |
| description: str | |
| type: str | |
| class Properties234(BaseModel): | |
| configMapRef: ConfigMapRef | |
| prefix: Prefix | |
| secretRef: SecretRef | |
| class IoK8sApiCoreV1EnvFromSource(BaseModel): | |
| description: str | |
| properties: Properties234 | |
| type: str | |
| class Value3(BaseModel): | |
| description: str | |
| type: str | |
| class ValueFrom(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties235(BaseModel): | |
| name: Name | |
| value: Value3 | |
| valueFrom: ValueFrom | |
| class IoK8sApiCoreV1EnvVar(BaseModel): | |
| description: str | |
| properties: Properties235 | |
| required: List[str] | |
| type: str | |
| class ConfigMapKeyRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class SecretKeyRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties236(BaseModel): | |
| configMapKeyRef: ConfigMapKeyRef | |
| fieldRef: FieldRef3 | |
| resourceFieldRef: ResourceFieldRef | |
| secretKeyRef: SecretKeyRef | |
| class IoK8sApiCoreV1EnvVarSource(BaseModel): | |
| description: str | |
| properties: Properties236 | |
| type: str | |
| class Items175(BaseModel): | |
| type: str | |
| class Args1(BaseModel): | |
| description: str | |
| items: Items175 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Command1(BaseModel): | |
| description: str | |
| items: Items175 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items177(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Env1(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class EnvFrom1(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Ports2(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ResizePolicy1(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class TargetContainerName(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeDevices1(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class VolumeMounts2(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties237(BaseModel): | |
| args: Args1 | |
| command: Command1 | |
| env: Env1 | |
| envFrom: EnvFrom1 | |
| image: Image | |
| imagePullPolicy: ImagePullPolicy | |
| lifecycle: Lifecycle | |
| livenessProbe: LivenessProbe | |
| name: Name | |
| ports: Ports2 | |
| readinessProbe: ReadinessProbe | |
| resizePolicy: ResizePolicy1 | |
| resources: Resources5 | |
| restartPolicy: RestartPolicy | |
| securityContext: SecurityContext | |
| startupProbe: StartupProbe | |
| stdin: Stdin | |
| stdinOnce: StdinOnce | |
| targetContainerName: TargetContainerName | |
| terminationMessagePath: TerminationMessagePath | |
| terminationMessagePolicy: TerminationMessagePolicy | |
| tty: Tty | |
| volumeDevices: VolumeDevices1 | |
| volumeMounts: VolumeMounts2 | |
| workingDir: WorkingDir | |
| class IoK8sApiCoreV1EphemeralContainer(BaseModel): | |
| description: str | |
| properties: Properties237 | |
| required: List[str] | |
| type: str | |
| class VolumeClaimTemplate(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties238(BaseModel): | |
| volumeClaimTemplate: VolumeClaimTemplate | |
| class IoK8sApiCoreV1EphemeralVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties238 | |
| type: str | |
| class Count(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class EventTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class FirstTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class InvolvedObject(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class LastTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Related(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ReportingComponent(BaseModel): | |
| description: str | |
| type: str | |
| class ReportingInstance(BaseModel): | |
| description: str | |
| type: str | |
| class Series(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Source(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties239(BaseModel): | |
| action: Action | |
| apiVersion: ApiVersion | |
| count: Count | |
| eventTime: EventTime | |
| firstTimestamp: FirstTimestamp | |
| involvedObject: InvolvedObject | |
| kind: Kind | |
| lastTimestamp: LastTimestamp | |
| message: Message | |
| metadata: Metadata49 | |
| reason: Reason | |
| related: Related | |
| reportingComponent: ReportingComponent | |
| reportingInstance: ReportingInstance | |
| series: Series | |
| source: Source | |
| type: Type | |
| class IoK8sApiCoreV1Event(BaseModel): | |
| description: str | |
| properties: Properties239 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items183(BaseModel): | |
| description: str | |
| items: Items177 | |
| type: str | |
| class Properties240(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items183 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1EventList(BaseModel): | |
| description: str | |
| properties: Properties240 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class LastObservedTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties241(BaseModel): | |
| count: Count | |
| lastObservedTime: LastObservedTime | |
| class IoK8sApiCoreV1EventSeries(BaseModel): | |
| description: str | |
| properties: Properties241 | |
| type: str | |
| class Component(BaseModel): | |
| description: str | |
| type: str | |
| class Host(BaseModel): | |
| description: str | |
| type: str | |
| class Properties242(BaseModel): | |
| component: Component | |
| host: Host | |
| class IoK8sApiCoreV1EventSource(BaseModel): | |
| description: str | |
| properties: Properties242 | |
| type: str | |
| class Items185(BaseModel): | |
| type: str | |
| class Command2(BaseModel): | |
| description: str | |
| items: Items185 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties243(BaseModel): | |
| command: Command2 | |
| class IoK8sApiCoreV1ExecAction(BaseModel): | |
| description: str | |
| properties: Properties243 | |
| type: str | |
| class Lun(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class TargetWWNs(BaseModel): | |
| description: str | |
| items: Items185 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Wwids(BaseModel): | |
| description: str | |
| items: Items185 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties244(BaseModel): | |
| fsType: FsType | |
| lun: Lun | |
| readOnly: ReadOnly | |
| targetWWNs: TargetWWNs | |
| wwids: Wwids | |
| class IoK8sApiCoreV1FCVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties244 | |
| type: str | |
| class AdditionalProperties8(BaseModel): | |
| type: str | |
| class Options(BaseModel): | |
| additionalProperties: AdditionalProperties8 | |
| description: str | |
| type: str | |
| class Properties245(BaseModel): | |
| driver: Driver | |
| fsType: FsType | |
| options: Options | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| class IoK8sApiCoreV1FlexPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties245 | |
| required: List[str] | |
| type: str | |
| class Options1(BaseModel): | |
| additionalProperties: AdditionalProperties8 | |
| description: str | |
| type: str | |
| class Properties246(BaseModel): | |
| driver: Driver | |
| fsType: FsType | |
| options: Options1 | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| class IoK8sApiCoreV1FlexVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties246 | |
| required: List[str] | |
| type: str | |
| class DatasetName(BaseModel): | |
| description: str | |
| type: str | |
| class DatasetUUID(BaseModel): | |
| description: str | |
| type: str | |
| class Properties247(BaseModel): | |
| datasetName: DatasetName | |
| datasetUUID: DatasetUUID | |
| class IoK8sApiCoreV1FlockerVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties247 | |
| type: str | |
| class PdName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties248(BaseModel): | |
| fsType: FsType | |
| partition: Partition | |
| pdName: PdName | |
| readOnly: ReadOnly | |
| class IoK8sApiCoreV1GCEPersistentDiskVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties248 | |
| required: List[str] | |
| type: str | |
| class Service1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties249(BaseModel): | |
| port: Port | |
| service: Service1 | |
| class IoK8sApiCoreV1GRPCAction(BaseModel): | |
| properties: Properties249 | |
| required: List[str] | |
| type: str | |
| class Directory(BaseModel): | |
| description: str | |
| type: str | |
| class Repository(BaseModel): | |
| description: str | |
| type: str | |
| class Revision1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties250(BaseModel): | |
| directory: Directory | |
| repository: Repository | |
| revision: Revision1 | |
| class IoK8sApiCoreV1GitRepoVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties250 | |
| required: List[str] | |
| type: str | |
| class Endpoints(BaseModel): | |
| description: str | |
| type: str | |
| class EndpointsNamespace(BaseModel): | |
| description: str | |
| type: str | |
| class Properties251(BaseModel): | |
| endpoints: Endpoints | |
| endpointsNamespace: EndpointsNamespace | |
| path: Path | |
| readOnly: ReadOnly | |
| class IoK8sApiCoreV1GlusterfsPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties251 | |
| required: List[str] | |
| type: str | |
| class Properties252(BaseModel): | |
| endpoints: Endpoints | |
| path: Path | |
| readOnly: ReadOnly | |
| class IoK8sApiCoreV1GlusterfsVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties252 | |
| required: List[str] | |
| type: str | |
| class Items188(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class HttpHeaders(BaseModel): | |
| description: str | |
| items: Items188 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Port4(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Scheme(BaseModel): | |
| description: str | |
| type: str | |
| class Properties253(BaseModel): | |
| host: Host | |
| httpHeaders: HttpHeaders | |
| path: Path | |
| port: Port4 | |
| scheme: Scheme | |
| class IoK8sApiCoreV1HTTPGetAction(BaseModel): | |
| description: str | |
| properties: Properties253 | |
| required: List[str] | |
| type: str | |
| class Properties254(BaseModel): | |
| name: Name | |
| value: Value3 | |
| class IoK8sApiCoreV1HTTPHeader(BaseModel): | |
| description: str | |
| properties: Properties254 | |
| required: List[str] | |
| type: str | |
| class Items189(BaseModel): | |
| type: str | |
| class Hostnames(BaseModel): | |
| description: str | |
| items: Items189 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties255(BaseModel): | |
| hostnames: Hostnames | |
| ip: Ip | |
| class IoK8sApiCoreV1HostAlias(BaseModel): | |
| description: str | |
| properties: Properties255 | |
| required: List[str] | |
| type: str | |
| class Properties256(BaseModel): | |
| ip: Ip | |
| class IoK8sApiCoreV1HostIP(BaseModel): | |
| description: str | |
| properties: Properties256 | |
| required: List[str] | |
| type: str | |
| class Properties257(BaseModel): | |
| path: Path | |
| type: Type | |
| class IoK8sApiCoreV1HostPathVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties257 | |
| required: List[str] | |
| type: str | |
| class ChapAuthDiscovery(BaseModel): | |
| description: str | |
| type: str | |
| class ChapAuthSession(BaseModel): | |
| description: str | |
| type: str | |
| class InitiatorName(BaseModel): | |
| description: str | |
| type: str | |
| class Iqn(BaseModel): | |
| description: str | |
| type: str | |
| class IscsiInterface(BaseModel): | |
| description: str | |
| type: str | |
| class Portals(BaseModel): | |
| description: str | |
| items: Items189 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class TargetPortal(BaseModel): | |
| description: str | |
| type: str | |
| class Properties258(BaseModel): | |
| chapAuthDiscovery: ChapAuthDiscovery | |
| chapAuthSession: ChapAuthSession | |
| fsType: FsType | |
| initiatorName: InitiatorName | |
| iqn: Iqn | |
| iscsiInterface: IscsiInterface | |
| lun: Lun | |
| portals: Portals | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| targetPortal: TargetPortal | |
| class IoK8sApiCoreV1ISCSIPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties258 | |
| required: List[str] | |
| type: str | |
| class Portals1(BaseModel): | |
| description: str | |
| items: Items189 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties259(BaseModel): | |
| chapAuthDiscovery: ChapAuthDiscovery | |
| chapAuthSession: ChapAuthSession | |
| fsType: FsType | |
| initiatorName: InitiatorName | |
| iqn: Iqn | |
| iscsiInterface: IscsiInterface | |
| lun: Lun | |
| portals: Portals1 | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| targetPortal: TargetPortal | |
| class IoK8sApiCoreV1ISCSIVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties259 | |
| required: List[str] | |
| type: str | |
| class PullPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Reference(BaseModel): | |
| description: str | |
| type: str | |
| class Properties260(BaseModel): | |
| pullPolicy: PullPolicy | |
| reference: Reference | |
| class IoK8sApiCoreV1ImageVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties260 | |
| type: str | |
| class Properties261(BaseModel): | |
| key: Key | |
| mode: Mode | |
| path: Path | |
| class IoK8sApiCoreV1KeyToPath(BaseModel): | |
| description: str | |
| properties: Properties261 | |
| required: List[str] | |
| type: str | |
| class PostStart(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PreStop(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties262(BaseModel): | |
| postStart: PostStart | |
| preStop: PreStop | |
| class IoK8sApiCoreV1Lifecycle(BaseModel): | |
| description: str | |
| properties: Properties262 | |
| type: str | |
| class Exec(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class HttpGet(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Sleep(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class TcpSocket(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties263(BaseModel): | |
| exec: Exec | |
| httpGet: HttpGet | |
| sleep: Sleep | |
| tcpSocket: TcpSocket | |
| class IoK8sApiCoreV1LifecycleHandler(BaseModel): | |
| description: str | |
| properties: Properties263 | |
| type: str | |
| class Properties264(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCoreV1LimitRange(BaseModel): | |
| description: str | |
| properties: Properties264 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties10(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Default(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class DefaultRequest(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class Max(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class MaxLimitRequestRatio(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class Min(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class Properties265(BaseModel): | |
| default: Default | |
| defaultRequest: DefaultRequest | |
| max: Max | |
| maxLimitRequestRatio: MaxLimitRequestRatio | |
| min: Min | |
| type: Type | |
| class IoK8sApiCoreV1LimitRangeItem(BaseModel): | |
| description: str | |
| properties: Properties265 | |
| required: List[str] | |
| type: str | |
| class Items193(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items192(BaseModel): | |
| description: str | |
| items: Items193 | |
| type: str | |
| class Properties266(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items192 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1LimitRangeList(BaseModel): | |
| description: str | |
| properties: Properties266 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items194(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Limits(BaseModel): | |
| description: str | |
| items: Items194 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties267(BaseModel): | |
| limits: Limits | |
| class IoK8sApiCoreV1LimitRangeSpec(BaseModel): | |
| description: str | |
| properties: Properties267 | |
| required: List[str] | |
| type: str | |
| class Gid(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Items195(BaseModel): | |
| format: str | |
| type: str | |
| class SupplementalGroups(BaseModel): | |
| description: str | |
| items: Items195 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Uid5(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties268(BaseModel): | |
| gid: Gid | |
| supplementalGroups: SupplementalGroups | |
| uid: Uid5 | |
| class IoK8sApiCoreV1LinuxContainerUser(BaseModel): | |
| description: str | |
| properties: Properties268 | |
| required: List[str] | |
| type: str | |
| class IpMode(BaseModel): | |
| description: str | |
| type: str | |
| class Items196(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Ports3(BaseModel): | |
| description: str | |
| items: Items196 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties269(BaseModel): | |
| hostname: Hostname | |
| ip: Ip | |
| ipMode: IpMode | |
| ports: Ports3 | |
| class IoK8sApiCoreV1LoadBalancerIngress(BaseModel): | |
| description: str | |
| properties: Properties269 | |
| type: str | |
| class Ingress(BaseModel): | |
| description: str | |
| items: Items196 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties270(BaseModel): | |
| ingress: Ingress | |
| class IoK8sApiCoreV1LoadBalancerStatus(BaseModel): | |
| description: str | |
| properties: Properties270 | |
| type: str | |
| class Properties271(BaseModel): | |
| name: Name | |
| class IoK8sApiCoreV1LocalObjectReference(BaseModel): | |
| description: str | |
| properties: Properties271 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties272(BaseModel): | |
| fsType: FsType | |
| path: Path | |
| class IoK8sApiCoreV1LocalVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties272 | |
| required: List[str] | |
| type: str | |
| class TargetVolumeAttributesClassName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties273(BaseModel): | |
| status: Status31 | |
| targetVolumeAttributesClassName: TargetVolumeAttributesClassName | |
| class IoK8sApiCoreV1ModifyVolumeStatus(BaseModel): | |
| description: str | |
| properties: Properties273 | |
| required: List[str] | |
| type: str | |
| class Server(BaseModel): | |
| description: str | |
| type: str | |
| class Properties274(BaseModel): | |
| path: Path | |
| readOnly: ReadOnly | |
| server: Server | |
| class IoK8sApiCoreV1NFSVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties274 | |
| required: List[str] | |
| type: str | |
| class Status34(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties275(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status34 | |
| class IoK8sApiCoreV1Namespace(BaseModel): | |
| description: str | |
| properties: Properties275 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class LastTransitionTime8(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Message15(BaseModel): | |
| type: str | |
| class Reason15(BaseModel): | |
| type: str | |
| class Status35(BaseModel): | |
| description: str | |
| type: str | |
| class Properties276(BaseModel): | |
| lastTransitionTime: LastTransitionTime8 | |
| message: Message15 | |
| reason: Reason15 | |
| status: Status35 | |
| type: Type | |
| class IoK8sApiCoreV1NamespaceCondition(BaseModel): | |
| description: str | |
| properties: Properties276 | |
| required: List[str] | |
| type: str | |
| class Items198(BaseModel): | |
| description: str | |
| items: Items196 | |
| type: str | |
| class Properties277(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items198 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1NamespaceList(BaseModel): | |
| description: str | |
| properties: Properties277 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items200(BaseModel): | |
| type: str | |
| class Finalizers(BaseModel): | |
| description: str | |
| items: Items200 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties278(BaseModel): | |
| finalizers: Finalizers | |
| class IoK8sApiCoreV1NamespaceSpec(BaseModel): | |
| description: str | |
| properties: Properties278 | |
| type: str | |
| class Items201(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions12(BaseModel): | |
| description: str | |
| items: Items201 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Phase(BaseModel): | |
| description: str | |
| type: str | |
| class Properties279(BaseModel): | |
| conditions: Conditions12 | |
| phase: Phase | |
| class IoK8sApiCoreV1NamespaceStatus(BaseModel): | |
| description: str | |
| properties: Properties279 | |
| type: str | |
| class Status36(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties280(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status36 | |
| class IoK8sApiCoreV1Node(BaseModel): | |
| description: str | |
| properties: Properties280 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Address(BaseModel): | |
| description: str | |
| type: str | |
| class Properties281(BaseModel): | |
| address: Address | |
| type: Type | |
| class IoK8sApiCoreV1NodeAddress(BaseModel): | |
| description: str | |
| properties: Properties281 | |
| required: List[str] | |
| type: str | |
| class PreferredDuringSchedulingIgnoredDuringExecution(BaseModel): | |
| description: str | |
| items: Items201 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class RequiredDuringSchedulingIgnoredDuringExecution(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties282(BaseModel): | |
| preferredDuringSchedulingIgnoredDuringExecution: ( | |
| PreferredDuringSchedulingIgnoredDuringExecution | |
| ) | |
| requiredDuringSchedulingIgnoredDuringExecution: ( | |
| RequiredDuringSchedulingIgnoredDuringExecution | |
| ) | |
| class IoK8sApiCoreV1NodeAffinity(BaseModel): | |
| description: str | |
| properties: Properties282 | |
| type: str | |
| class LastHeartbeatTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class LastTransitionTime9(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Message16(BaseModel): | |
| description: str | |
| type: str | |
| class Reason16(BaseModel): | |
| description: str | |
| type: str | |
| class Status37(BaseModel): | |
| description: str | |
| type: str | |
| class Properties283(BaseModel): | |
| lastHeartbeatTime: LastHeartbeatTime | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status37 | |
| type: Type | |
| class IoK8sApiCoreV1NodeCondition(BaseModel): | |
| description: str | |
| properties: Properties283 | |
| required: List[str] | |
| type: str | |
| class ConfigMap(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties284(BaseModel): | |
| configMap: ConfigMap | |
| class IoK8sApiCoreV1NodeConfigSource(BaseModel): | |
| description: str | |
| properties: Properties284 | |
| type: str | |
| class Active2(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Assigned(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class LastKnownGood(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties285(BaseModel): | |
| active: Active2 | |
| assigned: Assigned | |
| error: Error | |
| lastKnownGood: LastKnownGood | |
| class IoK8sApiCoreV1NodeConfigStatus(BaseModel): | |
| description: str | |
| properties: Properties285 | |
| type: str | |
| class KubeletEndpoint(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties286(BaseModel): | |
| kubeletEndpoint: KubeletEndpoint | |
| class IoK8sApiCoreV1NodeDaemonEndpoints(BaseModel): | |
| description: str | |
| properties: Properties286 | |
| type: str | |
| class SupplementalGroupsPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Properties287(BaseModel): | |
| supplementalGroupsPolicy: SupplementalGroupsPolicy | |
| class IoK8sApiCoreV1NodeFeatures(BaseModel): | |
| description: str | |
| properties: Properties287 | |
| type: str | |
| class Items203(BaseModel): | |
| description: str | |
| items: Items201 | |
| type: str | |
| class Properties288(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items203 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1NodeList(BaseModel): | |
| description: str | |
| properties: Properties288 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Features(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties289(BaseModel): | |
| features: Features | |
| name: Name | |
| class IoK8sApiCoreV1NodeRuntimeHandler(BaseModel): | |
| description: str | |
| properties: Properties289 | |
| type: str | |
| class RecursiveReadOnlyMounts(BaseModel): | |
| description: str | |
| type: str | |
| class UserNamespaces(BaseModel): | |
| description: str | |
| type: str | |
| class Properties290(BaseModel): | |
| recursiveReadOnlyMounts: RecursiveReadOnlyMounts | |
| userNamespaces: UserNamespaces | |
| class IoK8sApiCoreV1NodeRuntimeHandlerFeatures(BaseModel): | |
| description: str | |
| properties: Properties290 | |
| type: str | |
| class Items205(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class NodeSelectorTerms(BaseModel): | |
| description: str | |
| items: Items205 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties291(BaseModel): | |
| nodeSelectorTerms: NodeSelectorTerms | |
| class IoK8sApiCoreV1NodeSelector(BaseModel): | |
| description: str | |
| properties: Properties291 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items206(BaseModel): | |
| type: str | |
| class Values1(BaseModel): | |
| description: str | |
| items: Items206 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties292(BaseModel): | |
| key: Key | |
| operator: Operator | |
| values: Values1 | |
| class IoK8sApiCoreV1NodeSelectorRequirement(BaseModel): | |
| description: str | |
| properties: Properties292 | |
| required: List[str] | |
| type: str | |
| class Items207(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class MatchExpressions(BaseModel): | |
| description: str | |
| items: Items207 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MatchFields(BaseModel): | |
| description: str | |
| items: Items207 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties293(BaseModel): | |
| matchExpressions: MatchExpressions | |
| matchFields: MatchFields | |
| class IoK8sApiCoreV1NodeSelectorTerm(BaseModel): | |
| description: str | |
| properties: Properties293 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class ConfigSource(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ExternalID(BaseModel): | |
| description: str | |
| type: str | |
| class PodCIDR(BaseModel): | |
| description: str | |
| type: str | |
| class Items209(BaseModel): | |
| type: str | |
| class PodCIDRs(BaseModel): | |
| description: str | |
| items: Items209 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ProviderID(BaseModel): | |
| description: str | |
| type: str | |
| class Items210(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Taints(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Unschedulable(BaseModel): | |
| description: str | |
| type: str | |
| class Properties294(BaseModel): | |
| configSource: ConfigSource | |
| externalID: ExternalID | |
| podCIDR: PodCIDR | |
| podCIDRs: PodCIDRs | |
| providerID: ProviderID | |
| taints: Taints | |
| unschedulable: Unschedulable | |
| class IoK8sApiCoreV1NodeSpec(BaseModel): | |
| description: str | |
| properties: Properties294 | |
| type: str | |
| class Addresses1(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Allocatable(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class Capacity(BaseModel): | |
| additionalProperties: AdditionalProperties10 | |
| description: str | |
| type: str | |
| class Conditions13(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Config(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DaemonEndpoints(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Images(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class NodeInfo(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class RuntimeHandlers(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class VolumesAttached(BaseModel): | |
| description: str | |
| items: Items210 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items216(BaseModel): | |
| type: str | |
| class VolumesInUse(BaseModel): | |
| description: str | |
| items: Items216 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties295(BaseModel): | |
| addresses: Addresses1 | |
| allocatable: Allocatable | |
| capacity: Capacity | |
| conditions: Conditions13 | |
| config: Config | |
| daemonEndpoints: DaemonEndpoints | |
| features: Features | |
| images: Images | |
| nodeInfo: NodeInfo | |
| phase: Phase | |
| runtimeHandlers: RuntimeHandlers | |
| volumesAttached: VolumesAttached | |
| volumesInUse: VolumesInUse | |
| class IoK8sApiCoreV1NodeStatus(BaseModel): | |
| description: str | |
| properties: Properties295 | |
| type: str | |
| class Architecture(BaseModel): | |
| description: str | |
| type: str | |
| class BootID(BaseModel): | |
| description: str | |
| type: str | |
| class ContainerRuntimeVersion(BaseModel): | |
| description: str | |
| type: str | |
| class KernelVersion(BaseModel): | |
| description: str | |
| type: str | |
| class KubeProxyVersion(BaseModel): | |
| description: str | |
| type: str | |
| class KubeletVersion(BaseModel): | |
| description: str | |
| type: str | |
| class MachineID(BaseModel): | |
| description: str | |
| type: str | |
| class OperatingSystem(BaseModel): | |
| description: str | |
| type: str | |
| class OsImage(BaseModel): | |
| description: str | |
| type: str | |
| class SystemUUID(BaseModel): | |
| description: str | |
| type: str | |
| class Properties296(BaseModel): | |
| architecture: Architecture | |
| bootID: BootID | |
| containerRuntimeVersion: ContainerRuntimeVersion | |
| kernelVersion: KernelVersion | |
| kubeProxyVersion: KubeProxyVersion | |
| kubeletVersion: KubeletVersion | |
| machineID: MachineID | |
| operatingSystem: OperatingSystem | |
| osImage: OsImage | |
| systemUUID: SystemUUID | |
| class IoK8sApiCoreV1NodeSystemInfo(BaseModel): | |
| description: str | |
| properties: Properties296 | |
| required: List[str] | |
| type: str | |
| class FieldPath(BaseModel): | |
| description: str | |
| type: str | |
| class Properties297(BaseModel): | |
| apiVersion: ApiVersion | |
| fieldPath: FieldPath | |
| class IoK8sApiCoreV1ObjectFieldSelector(BaseModel): | |
| description: str | |
| properties: Properties297 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Uid6(BaseModel): | |
| description: str | |
| type: str | |
| class Properties298(BaseModel): | |
| apiVersion: ApiVersion | |
| fieldPath: FieldPath | |
| kind: Kind | |
| name: Name | |
| namespace: Namespace | |
| resourceVersion: ResourceVersion | |
| uid: Uid6 | |
| class IoK8sApiCoreV1ObjectReference(BaseModel): | |
| description: str | |
| properties: Properties298 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Status38(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties299(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status38 | |
| class IoK8sApiCoreV1PersistentVolume(BaseModel): | |
| description: str | |
| properties: Properties299 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties300(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status38 | |
| class IoK8sApiCoreV1PersistentVolumeClaim(BaseModel): | |
| description: str | |
| properties: Properties300 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status40(BaseModel): | |
| type: str | |
| class Type24(BaseModel): | |
| type: str | |
| class Properties301(BaseModel): | |
| lastProbeTime: LastProbeTime | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status40 | |
| type: Type24 | |
| class IoK8sApiCoreV1PersistentVolumeClaimCondition(BaseModel): | |
| description: str | |
| properties: Properties301 | |
| required: List[str] | |
| type: str | |
| class Items218(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items217(BaseModel): | |
| description: str | |
| items: Items218 | |
| type: str | |
| class Properties302(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items217 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1PersistentVolumeClaimList(BaseModel): | |
| description: str | |
| properties: Properties302 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items219(BaseModel): | |
| type: str | |
| class AccessModes(BaseModel): | |
| description: str | |
| items: Items219 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class DataSource(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DataSourceRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class StorageClassName(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeAttributesClassName(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeMode(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties303(BaseModel): | |
| accessModes: AccessModes | |
| dataSource: DataSource | |
| dataSourceRef: DataSourceRef | |
| resources: Resources5 | |
| selector: Selector8 | |
| storageClassName: StorageClassName | |
| volumeAttributesClassName: VolumeAttributesClassName | |
| volumeMode: VolumeMode | |
| volumeName: VolumeName | |
| class IoK8sApiCoreV1PersistentVolumeClaimSpec(BaseModel): | |
| description: str | |
| properties: Properties303 | |
| type: str | |
| class AccessModes1(BaseModel): | |
| description: str | |
| items: Items219 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class AdditionalProperties17(BaseModel): | |
| type: str | |
| class AllocatedResourceStatuses(BaseModel): | |
| additionalProperties: AdditionalProperties17 | |
| description: str | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class AdditionalProperties18(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AllocatedResources1(BaseModel): | |
| additionalProperties: AdditionalProperties18 | |
| description: str | |
| type: str | |
| class Capacity1(BaseModel): | |
| additionalProperties: AdditionalProperties18 | |
| description: str | |
| type: str | |
| class Items221(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions14(BaseModel): | |
| description: str | |
| items: Items221 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class CurrentVolumeAttributesClassName(BaseModel): | |
| description: str | |
| type: str | |
| class ModifyVolumeStatus(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties304(BaseModel): | |
| accessModes: AccessModes1 | |
| allocatedResourceStatuses: AllocatedResourceStatuses | |
| allocatedResources: AllocatedResources1 | |
| capacity: Capacity1 | |
| conditions: Conditions14 | |
| currentVolumeAttributesClassName: CurrentVolumeAttributesClassName | |
| modifyVolumeStatus: ModifyVolumeStatus | |
| phase: Phase | |
| class IoK8sApiCoreV1PersistentVolumeClaimStatus(BaseModel): | |
| description: str | |
| properties: Properties304 | |
| type: str | |
| class Properties305(BaseModel): | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCoreV1PersistentVolumeClaimTemplate(BaseModel): | |
| description: str | |
| properties: Properties305 | |
| required: List[str] | |
| type: str | |
| class ClaimName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties306(BaseModel): | |
| claimName: ClaimName | |
| readOnly: ReadOnly | |
| class IoK8sApiCoreV1PersistentVolumeClaimVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties306 | |
| required: List[str] | |
| type: str | |
| class Items222(BaseModel): | |
| description: str | |
| items: Items221 | |
| type: str | |
| class Properties307(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items222 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1PersistentVolumeList(BaseModel): | |
| description: str | |
| properties: Properties307 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items224(BaseModel): | |
| type: str | |
| class AccessModes2(BaseModel): | |
| description: str | |
| items: Items224 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class AwsElasticBlockStore(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AzureDisk(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AzureFile(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Capacity2(BaseModel): | |
| additionalProperties: AdditionalProperties18 | |
| description: str | |
| type: str | |
| class Cephfs(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Cinder(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ClaimRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Csi(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Fc(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class FlexVolume(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Flocker(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class GcePersistentDisk(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Glusterfs(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class HostPath(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Iscsi(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Local(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class MountOptions(BaseModel): | |
| description: str | |
| items: Items224 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Nfs(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PersistentVolumeReclaimPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class PhotonPersistentDisk(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PortworxVolume(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Quobyte(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Rbd(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ScaleIO(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Storageos(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class VsphereVolume(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties308(BaseModel): | |
| accessModes: AccessModes2 | |
| awsElasticBlockStore: AwsElasticBlockStore | |
| azureDisk: AzureDisk | |
| azureFile: AzureFile | |
| capacity: Capacity2 | |
| cephfs: Cephfs | |
| cinder: Cinder | |
| claimRef: ClaimRef | |
| csi: Csi | |
| fc: Fc | |
| flexVolume: FlexVolume | |
| flocker: Flocker | |
| gcePersistentDisk: GcePersistentDisk | |
| glusterfs: Glusterfs | |
| hostPath: HostPath | |
| iscsi: Iscsi | |
| local: Local | |
| mountOptions: MountOptions | |
| nfs: Nfs | |
| nodeAffinity: NodeAffinity | |
| persistentVolumeReclaimPolicy: PersistentVolumeReclaimPolicy | |
| photonPersistentDisk: PhotonPersistentDisk | |
| portworxVolume: PortworxVolume | |
| quobyte: Quobyte | |
| rbd: Rbd | |
| scaleIO: ScaleIO | |
| storageClassName: StorageClassName | |
| storageos: Storageos | |
| volumeAttributesClassName: VolumeAttributesClassName | |
| volumeMode: VolumeMode | |
| vsphereVolume: VsphereVolume | |
| class IoK8sApiCoreV1PersistentVolumeSpec(BaseModel): | |
| description: str | |
| properties: Properties308 | |
| type: str | |
| class LastPhaseTransitionTime(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties309(BaseModel): | |
| lastPhaseTransitionTime: LastPhaseTransitionTime | |
| message: Message16 | |
| phase: Phase | |
| reason: Reason16 | |
| class IoK8sApiCoreV1PersistentVolumeStatus(BaseModel): | |
| description: str | |
| properties: Properties309 | |
| type: str | |
| class PdID(BaseModel): | |
| description: str | |
| type: str | |
| class Properties310(BaseModel): | |
| fsType: FsType | |
| pdID: PdID | |
| class IoK8sApiCoreV1PhotonPersistentDiskVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties310 | |
| required: List[str] | |
| type: str | |
| class Status41(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties311(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status41 | |
| class IoK8sApiCoreV1Pod(BaseModel): | |
| description: str | |
| properties: Properties311 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items226(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class PreferredDuringSchedulingIgnoredDuringExecution1(BaseModel): | |
| description: str | |
| items: Items226 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class RequiredDuringSchedulingIgnoredDuringExecution1(BaseModel): | |
| description: str | |
| items: Items226 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties312(BaseModel): | |
| preferredDuringSchedulingIgnoredDuringExecution: ( | |
| PreferredDuringSchedulingIgnoredDuringExecution1 | |
| ) | |
| requiredDuringSchedulingIgnoredDuringExecution: ( | |
| RequiredDuringSchedulingIgnoredDuringExecution1 | |
| ) | |
| class IoK8sApiCoreV1PodAffinity(BaseModel): | |
| description: str | |
| properties: Properties312 | |
| type: str | |
| class Items228(BaseModel): | |
| type: str | |
| class MatchLabelKeys(BaseModel): | |
| description: str | |
| items: Items228 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MismatchLabelKeys(BaseModel): | |
| description: str | |
| items: Items228 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Namespaces(BaseModel): | |
| description: str | |
| items: Items228 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class TopologyKey(BaseModel): | |
| description: str | |
| type: str | |
| class Properties313(BaseModel): | |
| labelSelector: LabelSelector | |
| matchLabelKeys: MatchLabelKeys | |
| mismatchLabelKeys: MismatchLabelKeys | |
| namespaceSelector: NamespaceSelector | |
| namespaces: Namespaces | |
| topologyKey: TopologyKey | |
| class IoK8sApiCoreV1PodAffinityTerm(BaseModel): | |
| description: str | |
| properties: Properties313 | |
| required: List[str] | |
| type: str | |
| class Items231(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class PreferredDuringSchedulingIgnoredDuringExecution2(BaseModel): | |
| description: str | |
| items: Items231 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class RequiredDuringSchedulingIgnoredDuringExecution2(BaseModel): | |
| description: str | |
| items: Items231 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties314(BaseModel): | |
| preferredDuringSchedulingIgnoredDuringExecution: ( | |
| PreferredDuringSchedulingIgnoredDuringExecution2 | |
| ) | |
| requiredDuringSchedulingIgnoredDuringExecution: ( | |
| RequiredDuringSchedulingIgnoredDuringExecution2 | |
| ) | |
| class IoK8sApiCoreV1PodAntiAffinity(BaseModel): | |
| description: str | |
| properties: Properties314 | |
| type: str | |
| class Status42(BaseModel): | |
| description: str | |
| type: str | |
| class Type25(BaseModel): | |
| description: str | |
| type: str | |
| class Properties315(BaseModel): | |
| lastProbeTime: LastProbeTime | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status42 | |
| type: Type25 | |
| class IoK8sApiCoreV1PodCondition(BaseModel): | |
| description: str | |
| properties: Properties315 | |
| required: List[str] | |
| type: str | |
| class Items233(BaseModel): | |
| type: str | |
| class Nameservers(BaseModel): | |
| description: str | |
| items: Items233 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items234(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Options2(BaseModel): | |
| description: str | |
| items: Items234 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items235(BaseModel): | |
| type: str | |
| class Searches(BaseModel): | |
| description: str | |
| items: Items235 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties316(BaseModel): | |
| nameservers: Nameservers | |
| options: Options2 | |
| searches: Searches | |
| class IoK8sApiCoreV1PodDNSConfig(BaseModel): | |
| description: str | |
| properties: Properties316 | |
| type: str | |
| class Value5(BaseModel): | |
| type: str | |
| class Properties317(BaseModel): | |
| name: Name | |
| value: Value5 | |
| class IoK8sApiCoreV1PodDNSConfigOption(BaseModel): | |
| description: str | |
| properties: Properties317 | |
| type: str | |
| class Properties318(BaseModel): | |
| ip: Ip | |
| class IoK8sApiCoreV1PodIP(BaseModel): | |
| description: str | |
| properties: Properties318 | |
| required: List[str] | |
| type: str | |
| class Items237(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items236(BaseModel): | |
| description: str | |
| items: Items237 | |
| type: str | |
| class Properties319(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items236 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1PodList(BaseModel): | |
| description: str | |
| properties: Properties319 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties320(BaseModel): | |
| name: Name | |
| class IoK8sApiCoreV1PodOS(BaseModel): | |
| description: str | |
| properties: Properties320 | |
| required: List[str] | |
| type: str | |
| class ConditionType(BaseModel): | |
| description: str | |
| type: str | |
| class Properties321(BaseModel): | |
| conditionType: ConditionType | |
| class IoK8sApiCoreV1PodReadinessGate(BaseModel): | |
| description: str | |
| properties: Properties321 | |
| required: List[str] | |
| type: str | |
| class ResourceClaimName(BaseModel): | |
| description: str | |
| type: str | |
| class ResourceClaimTemplateName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties322(BaseModel): | |
| name: Name | |
| resourceClaimName: ResourceClaimName | |
| resourceClaimTemplateName: ResourceClaimTemplateName | |
| class IoK8sApiCoreV1PodResourceClaim(BaseModel): | |
| description: str | |
| properties: Properties322 | |
| required: List[str] | |
| type: str | |
| class Properties323(BaseModel): | |
| name: Name | |
| resourceClaimName: ResourceClaimName | |
| class IoK8sApiCoreV1PodResourceClaimStatus(BaseModel): | |
| description: str | |
| properties: Properties323 | |
| required: List[str] | |
| type: str | |
| class Properties324(BaseModel): | |
| name: Name | |
| class IoK8sApiCoreV1PodSchedulingGate(BaseModel): | |
| description: str | |
| properties: Properties324 | |
| required: List[str] | |
| type: str | |
| class AppArmorProfile(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class FsGroup(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class FsGroupChangePolicy(BaseModel): | |
| description: str | |
| type: str | |
| class RunAsGroup(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class RunAsNonRoot(BaseModel): | |
| description: str | |
| type: str | |
| class RunAsUser(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class SeLinuxOptions(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class SeccompProfile(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items238(BaseModel): | |
| format: str | |
| type: str | |
| class SupplementalGroups1(BaseModel): | |
| description: str | |
| items: Items238 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items239(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Sysctls(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class WindowsOptions(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties325(BaseModel): | |
| appArmorProfile: AppArmorProfile | |
| fsGroup: FsGroup | |
| fsGroupChangePolicy: FsGroupChangePolicy | |
| runAsGroup: RunAsGroup | |
| runAsNonRoot: RunAsNonRoot | |
| runAsUser: RunAsUser | |
| seLinuxOptions: SeLinuxOptions | |
| seccompProfile: SeccompProfile | |
| supplementalGroups: SupplementalGroups1 | |
| supplementalGroupsPolicy: SupplementalGroupsPolicy | |
| sysctls: Sysctls | |
| windowsOptions: WindowsOptions | |
| class IoK8sApiCoreV1PodSecurityContext(BaseModel): | |
| description: str | |
| properties: Properties325 | |
| type: str | |
| class Affinity(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AutomountServiceAccountToken(BaseModel): | |
| description: str | |
| type: str | |
| class Containers(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class DnsConfig(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DnsPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class EnableServiceLinks(BaseModel): | |
| description: str | |
| type: str | |
| class EphemeralContainers(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class HostAliases(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class HostIPC(BaseModel): | |
| description: str | |
| type: str | |
| class HostNetwork(BaseModel): | |
| description: str | |
| type: str | |
| class HostPID(BaseModel): | |
| description: str | |
| type: str | |
| class HostUsers(BaseModel): | |
| description: str | |
| type: str | |
| class ImagePullSecrets(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class InitContainers(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class AdditionalProperties21(BaseModel): | |
| type: str | |
| class NodeSelector(BaseModel): | |
| additionalProperties: AdditionalProperties21 | |
| description: str | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Os(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AdditionalProperties22(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Overhead(BaseModel): | |
| additionalProperties: AdditionalProperties22 | |
| description: str | |
| type: str | |
| class PreemptionPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Priority(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class PriorityClassName(BaseModel): | |
| description: str | |
| type: str | |
| class ReadinessGates(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceClaims(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class RuntimeClassName(BaseModel): | |
| description: str | |
| type: str | |
| class SchedulerName(BaseModel): | |
| description: str | |
| type: str | |
| class SchedulingGates(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ServiceAccount(BaseModel): | |
| description: str | |
| type: str | |
| class ServiceAccountName(BaseModel): | |
| description: str | |
| type: str | |
| class SetHostnameAsFQDN(BaseModel): | |
| description: str | |
| type: str | |
| class ShareProcessNamespace(BaseModel): | |
| description: str | |
| type: str | |
| class Subdomain(BaseModel): | |
| description: str | |
| type: str | |
| class TerminationGracePeriodSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Tolerations(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class TopologySpreadConstraints(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Volumes(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties326(BaseModel): | |
| activeDeadlineSeconds: ActiveDeadlineSeconds | |
| affinity: Affinity | |
| automountServiceAccountToken: AutomountServiceAccountToken | |
| containers: Containers | |
| dnsConfig: DnsConfig | |
| dnsPolicy: DnsPolicy | |
| enableServiceLinks: EnableServiceLinks | |
| ephemeralContainers: EphemeralContainers | |
| hostAliases: HostAliases | |
| hostIPC: HostIPC | |
| hostNetwork: HostNetwork | |
| hostPID: HostPID | |
| hostUsers: HostUsers | |
| hostname: Hostname | |
| imagePullSecrets: ImagePullSecrets | |
| initContainers: InitContainers | |
| nodeName: NodeName | |
| nodeSelector: NodeSelector | |
| os: Os | |
| overhead: Overhead | |
| preemptionPolicy: PreemptionPolicy | |
| priority: Priority | |
| priorityClassName: PriorityClassName | |
| readinessGates: ReadinessGates | |
| resourceClaims: ResourceClaims | |
| restartPolicy: RestartPolicy | |
| runtimeClassName: RuntimeClassName | |
| schedulerName: SchedulerName | |
| schedulingGates: SchedulingGates | |
| securityContext: SecurityContext | |
| serviceAccount: ServiceAccount | |
| serviceAccountName: ServiceAccountName | |
| setHostnameAsFQDN: SetHostnameAsFQDN | |
| shareProcessNamespace: ShareProcessNamespace | |
| subdomain: Subdomain | |
| terminationGracePeriodSeconds: TerminationGracePeriodSeconds | |
| tolerations: Tolerations | |
| topologySpreadConstraints: TopologySpreadConstraints | |
| volumes: Volumes | |
| class IoK8sApiCoreV1PodSpec(BaseModel): | |
| description: str | |
| properties: Properties326 | |
| required: List[str] | |
| type: str | |
| class Conditions15(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class ContainerStatuses(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class EphemeralContainerStatuses(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class HostIPs(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class InitContainerStatuses(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class NominatedNodeName(BaseModel): | |
| description: str | |
| type: str | |
| class PodIP(BaseModel): | |
| description: str | |
| type: str | |
| class PodIPs(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class QosClass(BaseModel): | |
| description: str | |
| type: str | |
| class Resize(BaseModel): | |
| description: str | |
| type: str | |
| class ResourceClaimStatuses(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties327(BaseModel): | |
| conditions: Conditions15 | |
| containerStatuses: ContainerStatuses | |
| ephemeralContainerStatuses: EphemeralContainerStatuses | |
| hostIP: HostIP | |
| hostIPs: HostIPs | |
| initContainerStatuses: InitContainerStatuses | |
| message: Message16 | |
| nominatedNodeName: NominatedNodeName | |
| phase: Phase | |
| podIP: PodIP | |
| podIPs: PodIPs | |
| qosClass: QosClass | |
| reason: Reason16 | |
| resize: Resize | |
| resourceClaimStatuses: ResourceClaimStatuses | |
| startTime: StartTime | |
| class IoK8sApiCoreV1PodStatus(BaseModel): | |
| description: str | |
| properties: Properties327 | |
| type: str | |
| class Properties328(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| template: Template | |
| class IoK8sApiCoreV1PodTemplate(BaseModel): | |
| description: str | |
| properties: Properties328 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items258(BaseModel): | |
| description: str | |
| items: Items239 | |
| type: str | |
| class Properties329(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items258 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1PodTemplateList(BaseModel): | |
| description: str | |
| properties: Properties329 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties330(BaseModel): | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiCoreV1PodTemplateSpec(BaseModel): | |
| description: str | |
| properties: Properties330 | |
| type: str | |
| class Port5(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties331(BaseModel): | |
| error: Error | |
| port: Port5 | |
| protocol: Protocol | |
| class IoK8sApiCoreV1PortStatus(BaseModel): | |
| properties: Properties331 | |
| required: List[str] | |
| type: str | |
| class Properties332(BaseModel): | |
| fsType: FsType | |
| readOnly: ReadOnly | |
| volumeID: VolumeID | |
| class IoK8sApiCoreV1PortworxVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties332 | |
| required: List[str] | |
| type: str | |
| class Preference(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Weight(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties333(BaseModel): | |
| preference: Preference | |
| weight: Weight | |
| class IoK8sApiCoreV1PreferredSchedulingTerm(BaseModel): | |
| description: str | |
| properties: Properties333 | |
| required: List[str] | |
| type: str | |
| class FailureThreshold(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Grpc(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class InitialDelaySeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class SuccessThreshold(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties334(BaseModel): | |
| exec: Exec | |
| failureThreshold: FailureThreshold | |
| grpc: Grpc | |
| httpGet: HttpGet | |
| initialDelaySeconds: InitialDelaySeconds | |
| periodSeconds: PeriodSeconds | |
| successThreshold: SuccessThreshold | |
| tcpSocket: TcpSocket | |
| terminationGracePeriodSeconds: TerminationGracePeriodSeconds | |
| timeoutSeconds: TimeoutSeconds | |
| class IoK8sApiCoreV1Probe(BaseModel): | |
| description: str | |
| properties: Properties334 | |
| type: str | |
| class Items260(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Sources(BaseModel): | |
| description: str | |
| items: Items260 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties335(BaseModel): | |
| defaultMode: DefaultMode | |
| sources: Sources | |
| class IoK8sApiCoreV1ProjectedVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties335 | |
| type: str | |
| class Registry(BaseModel): | |
| description: str | |
| type: str | |
| class Tenant(BaseModel): | |
| description: str | |
| type: str | |
| class User5(BaseModel): | |
| description: str | |
| type: str | |
| class Volume(BaseModel): | |
| description: str | |
| type: str | |
| class Properties336(BaseModel): | |
| group: Group | |
| readOnly: ReadOnly | |
| registry: Registry | |
| tenant: Tenant | |
| user: User5 | |
| volume: Volume | |
| class IoK8sApiCoreV1QuobyteVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties336 | |
| required: List[str] | |
| type: str | |
| class Keyring(BaseModel): | |
| description: str | |
| type: str | |
| class Items261(BaseModel): | |
| type: str | |
| class Monitors2(BaseModel): | |
| description: str | |
| items: Items261 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Pool(BaseModel): | |
| description: str | |
| type: str | |
| class Properties337(BaseModel): | |
| fsType: FsType | |
| image: Image | |
| keyring: Keyring | |
| monitors: Monitors2 | |
| pool: Pool | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| user: User5 | |
| class IoK8sApiCoreV1RBDPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties337 | |
| required: List[str] | |
| type: str | |
| class Monitors3(BaseModel): | |
| description: str | |
| items: Items261 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties338(BaseModel): | |
| fsType: FsType | |
| image: Image | |
| keyring: Keyring | |
| monitors: Monitors3 | |
| pool: Pool | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| user: User5 | |
| class IoK8sApiCoreV1RBDVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties338 | |
| required: List[str] | |
| type: str | |
| class Status43(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties339(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status43 | |
| class IoK8sApiCoreV1ReplicationController(BaseModel): | |
| description: str | |
| properties: Properties339 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status44(BaseModel): | |
| description: str | |
| type: str | |
| class Properties340(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status44 | |
| type: Type25 | |
| class IoK8sApiCoreV1ReplicationControllerCondition(BaseModel): | |
| description: str | |
| properties: Properties340 | |
| required: List[str] | |
| type: str | |
| class Items264(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items263(BaseModel): | |
| description: str | |
| items: Items264 | |
| type: str | |
| class Properties341(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items263 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ReplicationControllerList(BaseModel): | |
| description: str | |
| properties: Properties341 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties23(BaseModel): | |
| type: str | |
| class Selector11(BaseModel): | |
| additionalProperties: AdditionalProperties23 | |
| description: str | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties342(BaseModel): | |
| minReadySeconds: MinReadySeconds | |
| replicas: Replicas | |
| selector: Selector11 | |
| template: Template | |
| class IoK8sApiCoreV1ReplicationControllerSpec(BaseModel): | |
| description: str | |
| properties: Properties342 | |
| type: str | |
| class Items265(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions16(BaseModel): | |
| description: str | |
| items: Items265 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties343(BaseModel): | |
| availableReplicas: AvailableReplicas | |
| conditions: Conditions16 | |
| fullyLabeledReplicas: FullyLabeledReplicas | |
| observedGeneration: ObservedGeneration | |
| readyReplicas: ReadyReplicas | |
| replicas: Replicas | |
| class IoK8sApiCoreV1ReplicationControllerStatus(BaseModel): | |
| description: str | |
| properties: Properties343 | |
| required: List[str] | |
| type: str | |
| class Request1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties344(BaseModel): | |
| name: Name | |
| request: Request1 | |
| class IoK8sApiCoreV1ResourceClaim(BaseModel): | |
| description: str | |
| properties: Properties344 | |
| required: List[str] | |
| type: str | |
| class Divisor(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Resource3(BaseModel): | |
| description: str | |
| type: str | |
| class Properties345(BaseModel): | |
| containerName: ContainerName | |
| divisor: Divisor | |
| resource: Resource3 | |
| class IoK8sApiCoreV1ResourceFieldSelector(BaseModel): | |
| description: str | |
| properties: Properties345 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Health(BaseModel): | |
| description: str | |
| type: str | |
| class ResourceID(BaseModel): | |
| description: str | |
| type: str | |
| class Properties346(BaseModel): | |
| health: Health | |
| resourceID: ResourceID | |
| class IoK8sApiCoreV1ResourceHealth(BaseModel): | |
| description: str | |
| properties: Properties346 | |
| required: List[str] | |
| type: str | |
| class Status45(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties347(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status45 | |
| class IoK8sApiCoreV1ResourceQuota(BaseModel): | |
| description: str | |
| properties: Properties347 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items266(BaseModel): | |
| description: str | |
| items: Items265 | |
| type: str | |
| class Properties348(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items266 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ResourceQuotaList(BaseModel): | |
| description: str | |
| properties: Properties348 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties24(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Hard(BaseModel): | |
| additionalProperties: AdditionalProperties24 | |
| description: str | |
| type: str | |
| class ScopeSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items268(BaseModel): | |
| type: str | |
| class Scopes(BaseModel): | |
| description: str | |
| items: Items268 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties349(BaseModel): | |
| hard: Hard | |
| scopeSelector: ScopeSelector | |
| scopes: Scopes | |
| class IoK8sApiCoreV1ResourceQuotaSpec(BaseModel): | |
| description: str | |
| properties: Properties349 | |
| type: str | |
| class Hard1(BaseModel): | |
| additionalProperties: AdditionalProperties24 | |
| description: str | |
| type: str | |
| class Used(BaseModel): | |
| additionalProperties: AdditionalProperties24 | |
| description: str | |
| type: str | |
| class Properties350(BaseModel): | |
| hard: Hard1 | |
| used: Used | |
| class IoK8sApiCoreV1ResourceQuotaStatus(BaseModel): | |
| description: str | |
| properties: Properties350 | |
| type: str | |
| class Items269(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Claims(BaseModel): | |
| description: str | |
| items: Items269 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Limits1(BaseModel): | |
| additionalProperties: AdditionalProperties24 | |
| description: str | |
| type: str | |
| class Requests(BaseModel): | |
| additionalProperties: AdditionalProperties24 | |
| description: str | |
| type: str | |
| class Properties351(BaseModel): | |
| claims: Claims | |
| limits: Limits1 | |
| requests: Requests | |
| class IoK8sApiCoreV1ResourceRequirements(BaseModel): | |
| description: str | |
| properties: Properties351 | |
| type: str | |
| class Resources9(BaseModel): | |
| description: str | |
| items: Items269 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties352(BaseModel): | |
| name: Name | |
| resources: Resources9 | |
| class IoK8sApiCoreV1ResourceStatus(BaseModel): | |
| properties: Properties352 | |
| required: List[str] | |
| type: str | |
| class Level(BaseModel): | |
| description: str | |
| type: str | |
| class Role(BaseModel): | |
| description: str | |
| type: str | |
| class Properties353(BaseModel): | |
| level: Level | |
| role: Role | |
| type: Type25 | |
| user: User5 | |
| class IoK8sApiCoreV1SELinuxOptions(BaseModel): | |
| description: str | |
| properties: Properties353 | |
| type: str | |
| class Gateway(BaseModel): | |
| description: str | |
| type: str | |
| class ProtectionDomain(BaseModel): | |
| description: str | |
| type: str | |
| class SslEnabled(BaseModel): | |
| description: str | |
| type: str | |
| class StorageMode(BaseModel): | |
| description: str | |
| type: str | |
| class StoragePool(BaseModel): | |
| description: str | |
| type: str | |
| class System(BaseModel): | |
| description: str | |
| type: str | |
| class Properties354(BaseModel): | |
| fsType: FsType | |
| gateway: Gateway | |
| protectionDomain: ProtectionDomain | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| sslEnabled: SslEnabled | |
| storageMode: StorageMode | |
| storagePool: StoragePool | |
| system: System | |
| volumeName: VolumeName | |
| class IoK8sApiCoreV1ScaleIOPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties354 | |
| required: List[str] | |
| type: str | |
| class Properties355(BaseModel): | |
| fsType: FsType | |
| gateway: Gateway | |
| protectionDomain: ProtectionDomain | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| sslEnabled: SslEnabled | |
| storageMode: StorageMode | |
| storagePool: StoragePool | |
| system: System | |
| volumeName: VolumeName | |
| class IoK8sApiCoreV1ScaleIOVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties355 | |
| required: List[str] | |
| type: str | |
| class MatchExpressions1(BaseModel): | |
| description: str | |
| items: Items269 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties356(BaseModel): | |
| matchExpressions: MatchExpressions1 | |
| class IoK8sApiCoreV1ScopeSelector(BaseModel): | |
| description: str | |
| properties: Properties356 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class ScopeName(BaseModel): | |
| description: str | |
| type: str | |
| class Items272(BaseModel): | |
| type: str | |
| class Values2(BaseModel): | |
| description: str | |
| items: Items272 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties357(BaseModel): | |
| operator: Operator | |
| scopeName: ScopeName | |
| values: Values2 | |
| class IoK8sApiCoreV1ScopedResourceSelectorRequirement(BaseModel): | |
| description: str | |
| properties: Properties357 | |
| required: List[str] | |
| type: str | |
| class Properties358(BaseModel): | |
| localhostProfile: LocalhostProfile | |
| type: Type25 | |
| class XKubernetesUnion1(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiCoreV1SeccompProfile(BaseModel): | |
| description: str | |
| properties: Properties358 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion1] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class AdditionalProperties29(BaseModel): | |
| format: str | |
| type: str | |
| class Data2(BaseModel): | |
| additionalProperties: AdditionalProperties29 | |
| description: str | |
| type: str | |
| class AdditionalProperties30(BaseModel): | |
| type: str | |
| class StringData(BaseModel): | |
| additionalProperties: AdditionalProperties30 | |
| description: str | |
| type: str | |
| class Properties359(BaseModel): | |
| apiVersion: ApiVersion | |
| data: Data2 | |
| immutable: Immutable | |
| kind: Kind | |
| metadata: Metadata49 | |
| stringData: StringData | |
| type: Type25 | |
| class IoK8sApiCoreV1Secret(BaseModel): | |
| description: str | |
| properties: Properties359 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties360(BaseModel): | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1SecretEnvSource(BaseModel): | |
| description: str | |
| properties: Properties360 | |
| type: str | |
| class Properties361(BaseModel): | |
| key: Key | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1SecretKeySelector(BaseModel): | |
| description: str | |
| properties: Properties361 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items274(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items273(BaseModel): | |
| description: str | |
| items: Items274 | |
| type: str | |
| class Properties362(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items273 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1SecretList(BaseModel): | |
| description: str | |
| properties: Properties362 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items276(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items275(BaseModel): | |
| description: str | |
| items: Items276 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties363(BaseModel): | |
| items: Items275 | |
| name: Name | |
| optional: OptionalModel | |
| class IoK8sApiCoreV1SecretProjection(BaseModel): | |
| description: str | |
| properties: Properties363 | |
| type: str | |
| class Properties364(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| class IoK8sApiCoreV1SecretReference(BaseModel): | |
| description: str | |
| properties: Properties364 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items278(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items277(BaseModel): | |
| description: str | |
| items: Items278 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties365(BaseModel): | |
| defaultMode: DefaultMode | |
| items: Items277 | |
| optional: OptionalModel | |
| secretName: SecretName | |
| class IoK8sApiCoreV1SecretVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties365 | |
| type: str | |
| class AllowPrivilegeEscalation(BaseModel): | |
| description: str | |
| type: str | |
| class Capabilities(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Privileged(BaseModel): | |
| description: str | |
| type: str | |
| class ProcMount(BaseModel): | |
| description: str | |
| type: str | |
| class ReadOnlyRootFilesystem(BaseModel): | |
| description: str | |
| type: str | |
| class Properties366(BaseModel): | |
| allowPrivilegeEscalation: AllowPrivilegeEscalation | |
| appArmorProfile: AppArmorProfile | |
| capabilities: Capabilities | |
| privileged: Privileged | |
| procMount: ProcMount | |
| readOnlyRootFilesystem: ReadOnlyRootFilesystem | |
| runAsGroup: RunAsGroup | |
| runAsNonRoot: RunAsNonRoot | |
| runAsUser: RunAsUser | |
| seLinuxOptions: SeLinuxOptions | |
| seccompProfile: SeccompProfile | |
| windowsOptions: WindowsOptions | |
| class IoK8sApiCoreV1SecurityContext(BaseModel): | |
| description: str | |
| properties: Properties366 | |
| type: str | |
| class Properties367(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status45 | |
| class IoK8sApiCoreV1Service(BaseModel): | |
| description: str | |
| properties: Properties367 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items279(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ImagePullSecrets1(BaseModel): | |
| description: str | |
| items: Items279 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Secrets(BaseModel): | |
| description: str | |
| items: Items279 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties368(BaseModel): | |
| apiVersion: ApiVersion | |
| automountServiceAccountToken: AutomountServiceAccountToken | |
| imagePullSecrets: ImagePullSecrets1 | |
| kind: Kind | |
| metadata: Metadata49 | |
| secrets: Secrets | |
| class IoK8sApiCoreV1ServiceAccount(BaseModel): | |
| description: str | |
| properties: Properties368 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items281(BaseModel): | |
| description: str | |
| items: Items279 | |
| type: str | |
| class Properties369(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items281 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ServiceAccountList(BaseModel): | |
| description: str | |
| properties: Properties369 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Audience(BaseModel): | |
| description: str | |
| type: str | |
| class Properties370(BaseModel): | |
| audience: Audience | |
| expirationSeconds: ExpirationSeconds | |
| path: Path | |
| class IoK8sApiCoreV1ServiceAccountTokenProjection(BaseModel): | |
| description: str | |
| properties: Properties370 | |
| required: List[str] | |
| type: str | |
| class Items284(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items283(BaseModel): | |
| description: str | |
| items: Items284 | |
| type: str | |
| class Properties371(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items283 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiCoreV1ServiceList(BaseModel): | |
| description: str | |
| properties: Properties371 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class NodePort(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class TargetPort(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties372(BaseModel): | |
| appProtocol: AppProtocol | |
| name: Name | |
| nodePort: NodePort | |
| port: Port5 | |
| protocol: Protocol | |
| targetPort: TargetPort | |
| class IoK8sApiCoreV1ServicePort(BaseModel): | |
| description: str | |
| properties: Properties372 | |
| required: List[str] | |
| type: str | |
| class AllocateLoadBalancerNodePorts(BaseModel): | |
| description: str | |
| type: str | |
| class ClusterIP(BaseModel): | |
| description: str | |
| type: str | |
| class Items285(BaseModel): | |
| type: str | |
| class ClusterIPs(BaseModel): | |
| description: str | |
| items: Items285 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ExternalIPs(BaseModel): | |
| description: str | |
| items: Items285 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ExternalName(BaseModel): | |
| description: str | |
| type: str | |
| class ExternalTrafficPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class HealthCheckNodePort(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class InternalTrafficPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class IpFamilies(BaseModel): | |
| description: str | |
| items: Items285 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class IpFamilyPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class LoadBalancerClass(BaseModel): | |
| description: str | |
| type: str | |
| class LoadBalancerIP(BaseModel): | |
| description: str | |
| type: str | |
| class LoadBalancerSourceRanges(BaseModel): | |
| description: str | |
| items: Items285 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items289(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Ports4(BaseModel): | |
| description: str | |
| items: Items289 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class PublishNotReadyAddresses(BaseModel): | |
| description: str | |
| type: str | |
| class Selector12(BaseModel): | |
| additionalProperties: AdditionalProperties30 | |
| description: str | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class SessionAffinity(BaseModel): | |
| description: str | |
| type: str | |
| class SessionAffinityConfig(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class TrafficDistribution(BaseModel): | |
| description: str | |
| type: str | |
| class Properties373(BaseModel): | |
| allocateLoadBalancerNodePorts: AllocateLoadBalancerNodePorts | |
| clusterIP: ClusterIP | |
| clusterIPs: ClusterIPs | |
| externalIPs: ExternalIPs | |
| externalName: ExternalName | |
| externalTrafficPolicy: ExternalTrafficPolicy | |
| healthCheckNodePort: HealthCheckNodePort | |
| internalTrafficPolicy: InternalTrafficPolicy | |
| ipFamilies: IpFamilies | |
| ipFamilyPolicy: IpFamilyPolicy | |
| loadBalancerClass: LoadBalancerClass | |
| loadBalancerIP: LoadBalancerIP | |
| loadBalancerSourceRanges: LoadBalancerSourceRanges | |
| ports: Ports4 | |
| publishNotReadyAddresses: PublishNotReadyAddresses | |
| selector: Selector12 | |
| sessionAffinity: SessionAffinity | |
| sessionAffinityConfig: SessionAffinityConfig | |
| trafficDistribution: TrafficDistribution | |
| type: Type25 | |
| class IoK8sApiCoreV1ServiceSpec(BaseModel): | |
| description: str | |
| properties: Properties373 | |
| type: str | |
| class Conditions17(BaseModel): | |
| description: str | |
| items: Items289 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class LoadBalancer(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties374(BaseModel): | |
| conditions: Conditions17 | |
| loadBalancer: LoadBalancer | |
| class IoK8sApiCoreV1ServiceStatus(BaseModel): | |
| description: str | |
| properties: Properties374 | |
| type: str | |
| class ClientIP(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties375(BaseModel): | |
| clientIP: ClientIP | |
| class IoK8sApiCoreV1SessionAffinityConfig(BaseModel): | |
| description: str | |
| properties: Properties375 | |
| type: str | |
| class Seconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties376(BaseModel): | |
| seconds: Seconds | |
| class IoK8sApiCoreV1SleepAction(BaseModel): | |
| description: str | |
| properties: Properties376 | |
| required: List[str] | |
| type: str | |
| class VolumeNamespace(BaseModel): | |
| description: str | |
| type: str | |
| class Properties377(BaseModel): | |
| fsType: FsType | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| volumeName: VolumeName | |
| volumeNamespace: VolumeNamespace | |
| class IoK8sApiCoreV1StorageOSPersistentVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties377 | |
| type: str | |
| class Properties378(BaseModel): | |
| fsType: FsType | |
| readOnly: ReadOnly | |
| secretRef: SecretRef | |
| volumeName: VolumeName | |
| volumeNamespace: VolumeNamespace | |
| class IoK8sApiCoreV1StorageOSVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties378 | |
| type: str | |
| class Value6(BaseModel): | |
| description: str | |
| type: str | |
| class Properties379(BaseModel): | |
| name: Name | |
| value: Value6 | |
| class IoK8sApiCoreV1Sysctl(BaseModel): | |
| description: str | |
| properties: Properties379 | |
| required: List[str] | |
| type: str | |
| class Port7(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties380(BaseModel): | |
| host: Host | |
| port: Port7 | |
| class IoK8sApiCoreV1TCPSocketAction(BaseModel): | |
| description: str | |
| properties: Properties380 | |
| required: List[str] | |
| type: str | |
| class Effect(BaseModel): | |
| description: str | |
| type: str | |
| class TimeAdded(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties381(BaseModel): | |
| effect: Effect | |
| key: Key | |
| timeAdded: TimeAdded | |
| value: Value6 | |
| class IoK8sApiCoreV1Taint(BaseModel): | |
| description: str | |
| properties: Properties381 | |
| required: List[str] | |
| type: str | |
| class TolerationSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties382(BaseModel): | |
| effect: Effect | |
| key: Key | |
| operator: Operator | |
| tolerationSeconds: TolerationSeconds | |
| value: Value6 | |
| class IoK8sApiCoreV1Toleration(BaseModel): | |
| description: str | |
| properties: Properties382 | |
| type: str | |
| class Items291(BaseModel): | |
| type: str | |
| class Values3(BaseModel): | |
| description: str | |
| items: Items291 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties383(BaseModel): | |
| key: Key | |
| values: Values3 | |
| class IoK8sApiCoreV1TopologySelectorLabelRequirement(BaseModel): | |
| description: str | |
| properties: Properties383 | |
| required: List[str] | |
| type: str | |
| class Items292(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class MatchLabelExpressions(BaseModel): | |
| description: str | |
| items: Items292 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties384(BaseModel): | |
| matchLabelExpressions: MatchLabelExpressions | |
| class IoK8sApiCoreV1TopologySelectorTerm(BaseModel): | |
| description: str | |
| properties: Properties384 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items293(BaseModel): | |
| type: str | |
| class MatchLabelKeys1(BaseModel): | |
| description: str | |
| items: Items293 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class MaxSkew(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class MinDomains(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NodeAffinityPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class NodeTaintsPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class WhenUnsatisfiable(BaseModel): | |
| description: str | |
| type: str | |
| class Properties385(BaseModel): | |
| labelSelector: LabelSelector | |
| matchLabelKeys: MatchLabelKeys1 | |
| maxSkew: MaxSkew | |
| minDomains: MinDomains | |
| nodeAffinityPolicy: NodeAffinityPolicy | |
| nodeTaintsPolicy: NodeTaintsPolicy | |
| topologyKey: TopologyKey | |
| whenUnsatisfiable: WhenUnsatisfiable | |
| class IoK8sApiCoreV1TopologySpreadConstraint(BaseModel): | |
| description: str | |
| properties: Properties385 | |
| required: List[str] | |
| type: str | |
| class ApiGroup(BaseModel): | |
| description: str | |
| type: str | |
| class Properties386(BaseModel): | |
| apiGroup: ApiGroup | |
| kind: Kind | |
| name: Name | |
| class IoK8sApiCoreV1TypedLocalObjectReference(BaseModel): | |
| description: str | |
| properties: Properties386 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties387(BaseModel): | |
| apiGroup: ApiGroup | |
| kind: Kind | |
| name: Name | |
| namespace: Namespace | |
| class IoK8sApiCoreV1TypedObjectReference(BaseModel): | |
| properties: Properties387 | |
| required: List[str] | |
| type: str | |
| class DownwardAPI(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class EmptyDir(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Ephemeral(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class GitRepo(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Image5(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PersistentVolumeClaim(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Projected(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Secret(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties388(BaseModel): | |
| awsElasticBlockStore: AwsElasticBlockStore | |
| azureDisk: AzureDisk | |
| azureFile: AzureFile | |
| cephfs: Cephfs | |
| cinder: Cinder | |
| configMap: ConfigMap | |
| csi: Csi | |
| downwardAPI: DownwardAPI | |
| emptyDir: EmptyDir | |
| ephemeral: Ephemeral | |
| fc: Fc | |
| flexVolume: FlexVolume | |
| flocker: Flocker | |
| gcePersistentDisk: GcePersistentDisk | |
| gitRepo: GitRepo | |
| glusterfs: Glusterfs | |
| hostPath: HostPath | |
| image: Image5 | |
| iscsi: Iscsi | |
| name: Name | |
| nfs: Nfs | |
| persistentVolumeClaim: PersistentVolumeClaim | |
| photonPersistentDisk: PhotonPersistentDisk | |
| portworxVolume: PortworxVolume | |
| projected: Projected | |
| quobyte: Quobyte | |
| rbd: Rbd | |
| scaleIO: ScaleIO | |
| secret: Secret | |
| storageos: Storageos | |
| vsphereVolume: VsphereVolume | |
| class IoK8sApiCoreV1Volume(BaseModel): | |
| description: str | |
| properties: Properties388 | |
| required: List[str] | |
| type: str | |
| class Properties389(BaseModel): | |
| devicePath: DevicePath | |
| name: Name | |
| class IoK8sApiCoreV1VolumeDevice(BaseModel): | |
| description: str | |
| properties: Properties389 | |
| required: List[str] | |
| type: str | |
| class MountPath(BaseModel): | |
| description: str | |
| type: str | |
| class MountPropagation(BaseModel): | |
| description: str | |
| type: str | |
| class RecursiveReadOnly(BaseModel): | |
| description: str | |
| type: str | |
| class SubPath(BaseModel): | |
| description: str | |
| type: str | |
| class SubPathExpr(BaseModel): | |
| description: str | |
| type: str | |
| class Properties390(BaseModel): | |
| mountPath: MountPath | |
| mountPropagation: MountPropagation | |
| name: Name | |
| readOnly: ReadOnly | |
| recursiveReadOnly: RecursiveReadOnly | |
| subPath: SubPath | |
| subPathExpr: SubPathExpr | |
| class IoK8sApiCoreV1VolumeMount(BaseModel): | |
| description: str | |
| properties: Properties390 | |
| required: List[str] | |
| type: str | |
| class Properties391(BaseModel): | |
| mountPath: MountPath | |
| name: Name | |
| readOnly: ReadOnly | |
| recursiveReadOnly: RecursiveReadOnly | |
| class IoK8sApiCoreV1VolumeMountStatus(BaseModel): | |
| description: str | |
| properties: Properties391 | |
| required: List[str] | |
| type: str | |
| class Required(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties392(BaseModel): | |
| required: Required | |
| class IoK8sApiCoreV1VolumeNodeAffinity(BaseModel): | |
| description: str | |
| properties: Properties392 | |
| type: str | |
| class ClusterTrustBundle(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ServiceAccountToken(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties393(BaseModel): | |
| clusterTrustBundle: ClusterTrustBundle | |
| configMap: ConfigMap | |
| downwardAPI: DownwardAPI | |
| secret: Secret | |
| serviceAccountToken: ServiceAccountToken | |
| class IoK8sApiCoreV1VolumeProjection(BaseModel): | |
| description: str | |
| properties: Properties393 | |
| type: str | |
| class AdditionalProperties32(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Limits2(BaseModel): | |
| additionalProperties: AdditionalProperties32 | |
| description: str | |
| type: str | |
| class Requests1(BaseModel): | |
| additionalProperties: AdditionalProperties32 | |
| description: str | |
| type: str | |
| class Properties394(BaseModel): | |
| limits: Limits2 | |
| requests: Requests1 | |
| class IoK8sApiCoreV1VolumeResourceRequirements(BaseModel): | |
| description: str | |
| properties: Properties394 | |
| type: str | |
| class StoragePolicyID(BaseModel): | |
| description: str | |
| type: str | |
| class StoragePolicyName(BaseModel): | |
| description: str | |
| type: str | |
| class VolumePath(BaseModel): | |
| description: str | |
| type: str | |
| class Properties395(BaseModel): | |
| fsType: FsType | |
| storagePolicyID: StoragePolicyID | |
| storagePolicyName: StoragePolicyName | |
| volumePath: VolumePath | |
| class IoK8sApiCoreV1VsphereVirtualDiskVolumeSource(BaseModel): | |
| description: str | |
| properties: Properties395 | |
| required: List[str] | |
| type: str | |
| class PodAffinityTerm(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties396(BaseModel): | |
| podAffinityTerm: PodAffinityTerm | |
| weight: Weight | |
| class IoK8sApiCoreV1WeightedPodAffinityTerm(BaseModel): | |
| description: str | |
| properties: Properties396 | |
| required: List[str] | |
| type: str | |
| class GmsaCredentialSpec(BaseModel): | |
| description: str | |
| type: str | |
| class GmsaCredentialSpecName(BaseModel): | |
| description: str | |
| type: str | |
| class HostProcess(BaseModel): | |
| description: str | |
| type: str | |
| class RunAsUserName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties397(BaseModel): | |
| gmsaCredentialSpec: GmsaCredentialSpec | |
| gmsaCredentialSpecName: GmsaCredentialSpecName | |
| hostProcess: HostProcess | |
| runAsUserName: RunAsUserName | |
| class IoK8sApiCoreV1WindowsSecurityContextOptions(BaseModel): | |
| description: str | |
| properties: Properties397 | |
| type: str | |
| class Addresses2(BaseModel): | |
| description: str | |
| items: Items293 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Conditions18(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class AdditionalProperties34(BaseModel): | |
| type: str | |
| class DeprecatedTopology(BaseModel): | |
| additionalProperties: AdditionalProperties34 | |
| description: str | |
| type: str | |
| class Hints(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Zone(BaseModel): | |
| description: str | |
| type: str | |
| class Properties398(BaseModel): | |
| addresses: Addresses2 | |
| conditions: Conditions18 | |
| deprecatedTopology: DeprecatedTopology | |
| hints: Hints | |
| hostname: Hostname | |
| nodeName: NodeName | |
| targetRef: TargetRef | |
| zone: Zone | |
| class IoK8sApiDiscoveryV1Endpoint(BaseModel): | |
| description: str | |
| properties: Properties398 | |
| required: List[str] | |
| type: str | |
| class Serving(BaseModel): | |
| description: str | |
| type: str | |
| class Terminating1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties399(BaseModel): | |
| ready: Ready1 | |
| serving: Serving | |
| terminating: Terminating1 | |
| class IoK8sApiDiscoveryV1EndpointConditions(BaseModel): | |
| description: str | |
| properties: Properties399 | |
| type: str | |
| class Items295(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ForZones(BaseModel): | |
| description: str | |
| items: Items295 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties400(BaseModel): | |
| forZones: ForZones | |
| class IoK8sApiDiscoveryV1EndpointHints(BaseModel): | |
| description: str | |
| properties: Properties400 | |
| type: str | |
| class Port8(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties401(BaseModel): | |
| appProtocol: AppProtocol | |
| name: Name | |
| port: Port8 | |
| protocol: Protocol | |
| class IoK8sApiDiscoveryV1EndpointPort(BaseModel): | |
| description: str | |
| properties: Properties401 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class AddressType(BaseModel): | |
| description: str | |
| type: str | |
| class Endpoints2(BaseModel): | |
| description: str | |
| items: Items295 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Ports5(BaseModel): | |
| description: str | |
| items: Items295 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties402(BaseModel): | |
| addressType: AddressType | |
| apiVersion: ApiVersion | |
| endpoints: Endpoints2 | |
| kind: Kind | |
| metadata: Metadata49 | |
| ports: Ports5 | |
| class IoK8sApiDiscoveryV1EndpointSlice(BaseModel): | |
| description: str | |
| properties: Properties402 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items298(BaseModel): | |
| description: str | |
| items: Items295 | |
| type: str | |
| class Properties403(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items298 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiDiscoveryV1EndpointSliceList(BaseModel): | |
| description: str | |
| properties: Properties403 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties404(BaseModel): | |
| name: Name | |
| class IoK8sApiDiscoveryV1ForZone(BaseModel): | |
| description: str | |
| properties: Properties404 | |
| required: List[str] | |
| type: str | |
| class DeprecatedCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class DeprecatedFirstTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DeprecatedLastTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DeprecatedSource(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Note(BaseModel): | |
| description: str | |
| type: str | |
| class Regarding(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ReportingController(BaseModel): | |
| description: str | |
| type: str | |
| class Properties405(BaseModel): | |
| action: Action | |
| apiVersion: ApiVersion | |
| deprecatedCount: DeprecatedCount | |
| deprecatedFirstTimestamp: DeprecatedFirstTimestamp | |
| deprecatedLastTimestamp: DeprecatedLastTimestamp | |
| deprecatedSource: DeprecatedSource | |
| eventTime: EventTime | |
| kind: Kind | |
| metadata: Metadata49 | |
| note: Note | |
| reason: Reason16 | |
| regarding: Regarding | |
| related: Related | |
| reportingController: ReportingController | |
| reportingInstance: ReportingInstance | |
| series: Series | |
| type: Type25 | |
| class IoK8sApiEventsV1Event(BaseModel): | |
| description: str | |
| properties: Properties405 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items301(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items300(BaseModel): | |
| description: str | |
| items: Items301 | |
| type: str | |
| class Properties406(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items300 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiEventsV1EventList(BaseModel): | |
| description: str | |
| properties: Properties406 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties407(BaseModel): | |
| count: Count | |
| lastObservedTime: LastObservedTime | |
| class IoK8sApiEventsV1EventSeries(BaseModel): | |
| description: str | |
| properties: Properties407 | |
| required: List[str] | |
| type: str | |
| class LendablePercent(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class NominalConcurrencyShares(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties408(BaseModel): | |
| lendablePercent: LendablePercent | |
| nominalConcurrencyShares: NominalConcurrencyShares | |
| class IoK8sApiFlowcontrolV1ExemptPriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties408 | |
| type: str | |
| class Properties409(BaseModel): | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1FlowDistinguisherMethod(BaseModel): | |
| description: str | |
| properties: Properties409 | |
| required: List[str] | |
| type: str | |
| class Properties410(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status45 | |
| class IoK8sApiFlowcontrolV1FlowSchema(BaseModel): | |
| description: str | |
| properties: Properties410 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status48(BaseModel): | |
| description: str | |
| type: str | |
| class Properties411(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status48 | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1FlowSchemaCondition(BaseModel): | |
| description: str | |
| properties: Properties411 | |
| type: str | |
| class Items303(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items302(BaseModel): | |
| description: str | |
| items: Items303 | |
| type: str | |
| class Properties412(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items302 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiFlowcontrolV1FlowSchemaList(BaseModel): | |
| description: str | |
| properties: Properties412 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class DistinguisherMethod(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class MatchingPrecedence(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class PriorityLevelConfiguration(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items304(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Rules4(BaseModel): | |
| description: str | |
| items: Items304 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties413(BaseModel): | |
| distinguisherMethod: DistinguisherMethod | |
| matchingPrecedence: MatchingPrecedence | |
| priorityLevelConfiguration: PriorityLevelConfiguration | |
| rules: Rules4 | |
| class IoK8sApiFlowcontrolV1FlowSchemaSpec(BaseModel): | |
| description: str | |
| properties: Properties413 | |
| required: List[str] | |
| type: str | |
| class Conditions19(BaseModel): | |
| description: str | |
| items: Items304 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties414(BaseModel): | |
| conditions: Conditions19 | |
| class IoK8sApiFlowcontrolV1FlowSchemaStatus(BaseModel): | |
| description: str | |
| properties: Properties414 | |
| type: str | |
| class Properties415(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1GroupSubject(BaseModel): | |
| description: str | |
| properties: Properties415 | |
| required: List[str] | |
| type: str | |
| class Queuing(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties416(BaseModel): | |
| queuing: Queuing | |
| type: Type25 | |
| class FieldsToDiscriminateBy2(BaseModel): | |
| queuing: str | |
| class XKubernetesUnion2(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy2 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1LimitResponse(BaseModel): | |
| description: str | |
| properties: Properties416 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion2] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class BorrowingLimitPercent(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class LimitResponse(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties417(BaseModel): | |
| borrowingLimitPercent: BorrowingLimitPercent | |
| lendablePercent: LendablePercent | |
| limitResponse: LimitResponse | |
| nominalConcurrencyShares: NominalConcurrencyShares | |
| class IoK8sApiFlowcontrolV1LimitedPriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties417 | |
| type: str | |
| class Items306(BaseModel): | |
| type: str | |
| class NonResourceURLs1(BaseModel): | |
| description: str | |
| items: Items306 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs2(BaseModel): | |
| description: str | |
| items: Items306 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties418(BaseModel): | |
| nonResourceURLs: NonResourceURLs1 | |
| verbs: Verbs2 | |
| class IoK8sApiFlowcontrolV1NonResourcePolicyRule(BaseModel): | |
| description: str | |
| properties: Properties418 | |
| required: List[str] | |
| type: str | |
| class Items308(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class NonResourceRules1(BaseModel): | |
| description: str | |
| items: Items308 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceRules4(BaseModel): | |
| description: str | |
| items: Items308 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Subjects(BaseModel): | |
| description: str | |
| items: Items308 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties419(BaseModel): | |
| nonResourceRules: NonResourceRules1 | |
| resourceRules: ResourceRules4 | |
| subjects: Subjects | |
| class IoK8sApiFlowcontrolV1PolicyRulesWithSubjects(BaseModel): | |
| description: str | |
| properties: Properties419 | |
| required: List[str] | |
| type: str | |
| class Status49(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties420(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status49 | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties420 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status50(BaseModel): | |
| description: str | |
| type: str | |
| class Properties421(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status50 | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition(BaseModel): | |
| description: str | |
| properties: Properties421 | |
| type: str | |
| class Items311(BaseModel): | |
| description: str | |
| items: Items308 | |
| type: str | |
| class Properties422(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items311 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfigurationList(BaseModel): | |
| description: str | |
| properties: Properties422 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties423(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfigurationReference(BaseModel): | |
| description: str | |
| properties: Properties423 | |
| required: List[str] | |
| type: str | |
| class Exempt(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Limited(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties424(BaseModel): | |
| exempt: Exempt | |
| limited: Limited | |
| type: Type25 | |
| class FieldsToDiscriminateBy3(BaseModel): | |
| exempt: str | |
| limited: str | |
| class XKubernetesUnion3(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy3 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfigurationSpec(BaseModel): | |
| description: str | |
| properties: Properties424 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion3] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class Items313(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions20(BaseModel): | |
| description: str | |
| items: Items313 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties425(BaseModel): | |
| conditions: Conditions20 | |
| class IoK8sApiFlowcontrolV1PriorityLevelConfigurationStatus(BaseModel): | |
| description: str | |
| properties: Properties425 | |
| type: str | |
| class HandSize(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class QueueLengthLimit(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Queues(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties426(BaseModel): | |
| handSize: HandSize | |
| queueLengthLimit: QueueLengthLimit | |
| queues: Queues | |
| class IoK8sApiFlowcontrolV1QueuingConfiguration(BaseModel): | |
| description: str | |
| properties: Properties426 | |
| type: str | |
| class Items314(BaseModel): | |
| type: str | |
| class ApiGroups5(BaseModel): | |
| description: str | |
| items: Items314 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ClusterScope(BaseModel): | |
| description: str | |
| type: str | |
| class Namespaces1(BaseModel): | |
| description: str | |
| items: Items314 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources10(BaseModel): | |
| description: str | |
| items: Items314 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs3(BaseModel): | |
| description: str | |
| items: Items314 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties427(BaseModel): | |
| apiGroups: ApiGroups5 | |
| clusterScope: ClusterScope | |
| namespaces: Namespaces1 | |
| resources: Resources10 | |
| verbs: Verbs3 | |
| class IoK8sApiFlowcontrolV1ResourcePolicyRule(BaseModel): | |
| description: str | |
| properties: Properties427 | |
| required: List[str] | |
| type: str | |
| class Properties428(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| class IoK8sApiFlowcontrolV1ServiceAccountSubject(BaseModel): | |
| description: str | |
| properties: Properties428 | |
| required: List[str] | |
| type: str | |
| class Group2(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class ServiceAccount1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class User9(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties429(BaseModel): | |
| group: Group2 | |
| kind: Kind | |
| serviceAccount: ServiceAccount1 | |
| user: User9 | |
| class FieldsToDiscriminateBy4(BaseModel): | |
| group: str | |
| serviceAccount: str | |
| user: str | |
| class XKubernetesUnion4(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy4 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1Subject(BaseModel): | |
| description: str | |
| properties: Properties429 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion4] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class Properties430(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1UserSubject(BaseModel): | |
| description: str | |
| properties: Properties430 | |
| required: List[str] | |
| type: str | |
| class Properties431(BaseModel): | |
| lendablePercent: LendablePercent | |
| nominalConcurrencyShares: NominalConcurrencyShares | |
| class IoK8sApiFlowcontrolV1beta3ExemptPriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties431 | |
| type: str | |
| class Properties432(BaseModel): | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1beta3FlowDistinguisherMethod(BaseModel): | |
| description: str | |
| properties: Properties432 | |
| required: List[str] | |
| type: str | |
| class Status51(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties433(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status51 | |
| class IoK8sApiFlowcontrolV1beta3FlowSchema(BaseModel): | |
| description: str | |
| properties: Properties433 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status52(BaseModel): | |
| description: str | |
| type: str | |
| class Properties434(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status52 | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1beta3FlowSchemaCondition(BaseModel): | |
| description: str | |
| properties: Properties434 | |
| type: str | |
| class Items319(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items318(BaseModel): | |
| description: str | |
| items: Items319 | |
| type: str | |
| class Properties435(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items318 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiFlowcontrolV1beta3FlowSchemaList(BaseModel): | |
| description: str | |
| properties: Properties435 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items320(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Rules5(BaseModel): | |
| description: str | |
| items: Items320 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties436(BaseModel): | |
| distinguisherMethod: DistinguisherMethod | |
| matchingPrecedence: MatchingPrecedence | |
| priorityLevelConfiguration: PriorityLevelConfiguration | |
| rules: Rules5 | |
| class IoK8sApiFlowcontrolV1beta3FlowSchemaSpec(BaseModel): | |
| description: str | |
| properties: Properties436 | |
| required: List[str] | |
| type: str | |
| class Conditions21(BaseModel): | |
| description: str | |
| items: Items320 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties437(BaseModel): | |
| conditions: Conditions21 | |
| class IoK8sApiFlowcontrolV1beta3FlowSchemaStatus(BaseModel): | |
| description: str | |
| properties: Properties437 | |
| type: str | |
| class Properties438(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1beta3GroupSubject(BaseModel): | |
| description: str | |
| properties: Properties438 | |
| required: List[str] | |
| type: str | |
| class Properties439(BaseModel): | |
| queuing: Queuing | |
| type: Type25 | |
| class FieldsToDiscriminateBy5(BaseModel): | |
| queuing: str | |
| class XKubernetesUnion5(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy5 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1beta3LimitResponse(BaseModel): | |
| description: str | |
| properties: Properties439 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion5] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class Properties440(BaseModel): | |
| borrowingLimitPercent: BorrowingLimitPercent | |
| lendablePercent: LendablePercent | |
| limitResponse: LimitResponse | |
| nominalConcurrencyShares: NominalConcurrencyShares | |
| class IoK8sApiFlowcontrolV1beta3LimitedPriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties440 | |
| type: str | |
| class Items322(BaseModel): | |
| type: str | |
| class NonResourceURLs2(BaseModel): | |
| description: str | |
| items: Items322 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs4(BaseModel): | |
| description: str | |
| items: Items322 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties441(BaseModel): | |
| nonResourceURLs: NonResourceURLs2 | |
| verbs: Verbs4 | |
| class IoK8sApiFlowcontrolV1beta3NonResourcePolicyRule(BaseModel): | |
| description: str | |
| properties: Properties441 | |
| required: List[str] | |
| type: str | |
| class Items324(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class NonResourceRules2(BaseModel): | |
| description: str | |
| items: Items324 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceRules5(BaseModel): | |
| description: str | |
| items: Items324 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Subjects1(BaseModel): | |
| description: str | |
| items: Items324 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties442(BaseModel): | |
| nonResourceRules: NonResourceRules2 | |
| resourceRules: ResourceRules5 | |
| subjects: Subjects1 | |
| class IoK8sApiFlowcontrolV1beta3PolicyRulesWithSubjects(BaseModel): | |
| description: str | |
| properties: Properties442 | |
| required: List[str] | |
| type: str | |
| class Status53(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties443(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status53 | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfiguration(BaseModel): | |
| description: str | |
| properties: Properties443 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status54(BaseModel): | |
| description: str | |
| type: str | |
| class Properties444(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status54 | |
| type: Type25 | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationCondition(BaseModel): | |
| description: str | |
| properties: Properties444 | |
| type: str | |
| class Items327(BaseModel): | |
| description: str | |
| items: Items324 | |
| type: str | |
| class Properties445(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items327 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationList(BaseModel): | |
| description: str | |
| properties: Properties445 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties446(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationReference(BaseModel): | |
| description: str | |
| properties: Properties446 | |
| required: List[str] | |
| type: str | |
| class Properties447(BaseModel): | |
| exempt: Exempt | |
| limited: Limited | |
| type: Type25 | |
| class FieldsToDiscriminateBy6(BaseModel): | |
| exempt: str | |
| limited: str | |
| class XKubernetesUnion6(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy6 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationSpec(BaseModel): | |
| description: str | |
| properties: Properties447 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion6] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class Items329(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions22(BaseModel): | |
| description: str | |
| items: Items329 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties448(BaseModel): | |
| conditions: Conditions22 | |
| class IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationStatus(BaseModel): | |
| description: str | |
| properties: Properties448 | |
| type: str | |
| class Properties449(BaseModel): | |
| handSize: HandSize | |
| queueLengthLimit: QueueLengthLimit | |
| queues: Queues | |
| class IoK8sApiFlowcontrolV1beta3QueuingConfiguration(BaseModel): | |
| description: str | |
| properties: Properties449 | |
| type: str | |
| class Items330(BaseModel): | |
| type: str | |
| class ApiGroups6(BaseModel): | |
| description: str | |
| items: Items330 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Namespaces2(BaseModel): | |
| description: str | |
| items: Items330 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources11(BaseModel): | |
| description: str | |
| items: Items330 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs5(BaseModel): | |
| description: str | |
| items: Items330 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties450(BaseModel): | |
| apiGroups: ApiGroups6 | |
| clusterScope: ClusterScope | |
| namespaces: Namespaces2 | |
| resources: Resources11 | |
| verbs: Verbs5 | |
| class IoK8sApiFlowcontrolV1beta3ResourcePolicyRule(BaseModel): | |
| description: str | |
| properties: Properties450 | |
| required: List[str] | |
| type: str | |
| class Properties451(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| class IoK8sApiFlowcontrolV1beta3ServiceAccountSubject(BaseModel): | |
| description: str | |
| properties: Properties451 | |
| required: List[str] | |
| type: str | |
| class Properties452(BaseModel): | |
| group: Group2 | |
| kind: Kind | |
| serviceAccount: ServiceAccount1 | |
| user: User9 | |
| class FieldsToDiscriminateBy7(BaseModel): | |
| group: str | |
| serviceAccount: str | |
| user: str | |
| class XKubernetesUnion7(BaseModel): | |
| discriminator: str | |
| fields_to_discriminateBy: FieldsToDiscriminateBy7 = Field( | |
| ..., alias='fields-to-discriminateBy' | |
| ) | |
| class IoK8sApiFlowcontrolV1beta3Subject(BaseModel): | |
| description: str | |
| properties: Properties452 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_unions: List[XKubernetesUnion7] = Field( | |
| ..., alias='x-kubernetes-unions' | |
| ) | |
| class Properties453(BaseModel): | |
| name: Name | |
| class IoK8sApiFlowcontrolV1beta3UserSubject(BaseModel): | |
| description: str | |
| properties: Properties453 | |
| required: List[str] | |
| type: str | |
| class Backend(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PathType(BaseModel): | |
| description: str | |
| type: str | |
| class Properties454(BaseModel): | |
| backend: Backend | |
| path: Path | |
| pathType: PathType | |
| class IoK8sApiNetworkingV1HTTPIngressPath(BaseModel): | |
| description: str | |
| properties: Properties454 | |
| required: List[str] | |
| type: str | |
| class Items334(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Paths(BaseModel): | |
| description: str | |
| items: Items334 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties455(BaseModel): | |
| paths: Paths | |
| class IoK8sApiNetworkingV1HTTPIngressRuleValue(BaseModel): | |
| description: str | |
| properties: Properties455 | |
| required: List[str] | |
| type: str | |
| class Cidr(BaseModel): | |
| description: str | |
| type: str | |
| class Items335(BaseModel): | |
| type: str | |
| class Except(BaseModel): | |
| description: str | |
| items: Items335 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties456(BaseModel): | |
| cidr: Cidr | |
| except_: Except = Field(..., alias='except') | |
| class IoK8sApiNetworkingV1IPBlock(BaseModel): | |
| description: str | |
| properties: Properties456 | |
| required: List[str] | |
| type: str | |
| class Status55(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties457(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiNetworkingV1Ingress(BaseModel): | |
| description: str | |
| properties: Properties457 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Resource4(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Service2(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties458(BaseModel): | |
| resource: Resource4 | |
| service: Service2 | |
| class IoK8sApiNetworkingV1IngressBackend(BaseModel): | |
| description: str | |
| properties: Properties458 | |
| type: str | |
| class Properties459(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiNetworkingV1IngressClass(BaseModel): | |
| description: str | |
| properties: Properties459 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items337(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items336(BaseModel): | |
| description: str | |
| items: Items337 | |
| type: str | |
| class Properties460(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items336 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNetworkingV1IngressClassList(BaseModel): | |
| description: str | |
| properties: Properties460 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties461(BaseModel): | |
| apiGroup: ApiGroup | |
| kind: Kind | |
| name: Name | |
| namespace: Namespace | |
| scope: Scope | |
| class IoK8sApiNetworkingV1IngressClassParametersReference(BaseModel): | |
| description: str | |
| properties: Properties461 | |
| required: List[str] | |
| type: str | |
| class Controller(BaseModel): | |
| description: str | |
| type: str | |
| class Parameters(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties462(BaseModel): | |
| controller: Controller | |
| parameters: Parameters | |
| class IoK8sApiNetworkingV1IngressClassSpec(BaseModel): | |
| description: str | |
| properties: Properties462 | |
| type: str | |
| class Items339(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items338(BaseModel): | |
| description: str | |
| items: Items339 | |
| type: str | |
| class Properties463(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items338 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNetworkingV1IngressList(BaseModel): | |
| description: str | |
| properties: Properties463 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items340(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Ports6(BaseModel): | |
| description: str | |
| items: Items340 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties464(BaseModel): | |
| hostname: Hostname | |
| ip: Ip | |
| ports: Ports6 | |
| class IoK8sApiNetworkingV1IngressLoadBalancerIngress(BaseModel): | |
| description: str | |
| properties: Properties464 | |
| type: str | |
| class Ingress1(BaseModel): | |
| description: str | |
| items: Items340 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties465(BaseModel): | |
| ingress: Ingress1 | |
| class IoK8sApiNetworkingV1IngressLoadBalancerStatus(BaseModel): | |
| description: str | |
| properties: Properties465 | |
| type: str | |
| class Properties466(BaseModel): | |
| error: Error | |
| port: Port8 | |
| protocol: Protocol | |
| class IoK8sApiNetworkingV1IngressPortStatus(BaseModel): | |
| description: str | |
| properties: Properties466 | |
| required: List[str] | |
| type: str | |
| class Http(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Properties467(BaseModel): | |
| host: Host | |
| http: Http | |
| class IoK8sApiNetworkingV1IngressRule(BaseModel): | |
| description: str | |
| properties: Properties467 | |
| type: str | |
| class Port10(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties468(BaseModel): | |
| name: Name | |
| port: Port10 | |
| class IoK8sApiNetworkingV1IngressServiceBackend(BaseModel): | |
| description: str | |
| properties: Properties468 | |
| required: List[str] | |
| type: str | |
| class DefaultBackend(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class IngressClassName(BaseModel): | |
| description: str | |
| type: str | |
| class Rules6(BaseModel): | |
| description: str | |
| items: Items340 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Tls(BaseModel): | |
| description: str | |
| items: Items340 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties469(BaseModel): | |
| defaultBackend: DefaultBackend | |
| ingressClassName: IngressClassName | |
| rules: Rules6 | |
| tls: Tls | |
| class IoK8sApiNetworkingV1IngressSpec(BaseModel): | |
| description: str | |
| properties: Properties469 | |
| type: str | |
| class Properties470(BaseModel): | |
| loadBalancer: LoadBalancer | |
| class IoK8sApiNetworkingV1IngressStatus(BaseModel): | |
| description: str | |
| properties: Properties470 | |
| type: str | |
| class Items344(BaseModel): | |
| type: str | |
| class Hosts(BaseModel): | |
| description: str | |
| items: Items344 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties471(BaseModel): | |
| hosts: Hosts | |
| secretName: SecretName | |
| class IoK8sApiNetworkingV1IngressTLS(BaseModel): | |
| description: str | |
| properties: Properties471 | |
| type: str | |
| class Properties472(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiNetworkingV1NetworkPolicy(BaseModel): | |
| description: str | |
| properties: Properties472 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items345(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Ports7(BaseModel): | |
| description: str | |
| items: Items345 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class To(BaseModel): | |
| description: str | |
| items: Items345 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties473(BaseModel): | |
| ports: Ports7 | |
| to: To | |
| class IoK8sApiNetworkingV1NetworkPolicyEgressRule(BaseModel): | |
| description: str | |
| properties: Properties473 | |
| type: str | |
| class From(BaseModel): | |
| description: str | |
| items: Items345 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Ports8(BaseModel): | |
| description: str | |
| items: Items345 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties474(BaseModel): | |
| from_: From = Field(..., alias='from') | |
| ports: Ports8 | |
| class IoK8sApiNetworkingV1NetworkPolicyIngressRule(BaseModel): | |
| description: str | |
| properties: Properties474 | |
| type: str | |
| class Items349(BaseModel): | |
| description: str | |
| items: Items345 | |
| type: str | |
| class Properties475(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items349 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNetworkingV1NetworkPolicyList(BaseModel): | |
| description: str | |
| properties: Properties475 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class IpBlock(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PodSelector(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties476(BaseModel): | |
| ipBlock: IpBlock | |
| namespaceSelector: NamespaceSelector | |
| podSelector: PodSelector | |
| class IoK8sApiNetworkingV1NetworkPolicyPeer(BaseModel): | |
| description: str | |
| properties: Properties476 | |
| type: str | |
| class EndPort(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties477(BaseModel): | |
| endPort: EndPort | |
| port: Port10 | |
| protocol: Protocol | |
| class IoK8sApiNetworkingV1NetworkPolicyPort(BaseModel): | |
| description: str | |
| properties: Properties477 | |
| type: str | |
| class Items351(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Egress(BaseModel): | |
| description: str | |
| items: Items351 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Ingress2(BaseModel): | |
| description: str | |
| items: Items351 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items353(BaseModel): | |
| type: str | |
| class PolicyTypes(BaseModel): | |
| description: str | |
| items: Items353 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties478(BaseModel): | |
| egress: Egress | |
| ingress: Ingress2 | |
| podSelector: PodSelector | |
| policyTypes: PolicyTypes | |
| class IoK8sApiNetworkingV1NetworkPolicySpec(BaseModel): | |
| description: str | |
| properties: Properties478 | |
| required: List[str] | |
| type: str | |
| class Number(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties479(BaseModel): | |
| name: Name | |
| number: Number | |
| class IoK8sApiNetworkingV1ServiceBackendPort(BaseModel): | |
| description: str | |
| properties: Properties479 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties480(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiNetworkingV1beta1IPAddress(BaseModel): | |
| description: str | |
| properties: Properties480 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items355(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items354(BaseModel): | |
| description: str | |
| items: Items355 | |
| type: str | |
| class Properties481(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items354 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNetworkingV1beta1IPAddressList(BaseModel): | |
| description: str | |
| properties: Properties481 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ParentRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties482(BaseModel): | |
| parentRef: ParentRef | |
| class IoK8sApiNetworkingV1beta1IPAddressSpec(BaseModel): | |
| description: str | |
| properties: Properties482 | |
| required: List[str] | |
| type: str | |
| class Group4(BaseModel): | |
| description: str | |
| type: str | |
| class Resource5(BaseModel): | |
| description: str | |
| type: str | |
| class Properties483(BaseModel): | |
| group: Group4 | |
| name: Name | |
| namespace: Namespace | |
| resource: Resource5 | |
| class IoK8sApiNetworkingV1beta1ParentReference(BaseModel): | |
| description: str | |
| properties: Properties483 | |
| required: List[str] | |
| type: str | |
| class Properties484(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiNetworkingV1beta1ServiceCIDR(BaseModel): | |
| description: str | |
| properties: Properties484 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items357(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items356(BaseModel): | |
| description: str | |
| items: Items357 | |
| type: str | |
| class Properties485(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items356 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNetworkingV1beta1ServiceCIDRList(BaseModel): | |
| description: str | |
| properties: Properties485 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items358(BaseModel): | |
| type: str | |
| class Cidrs(BaseModel): | |
| description: str | |
| items: Items358 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties486(BaseModel): | |
| cidrs: Cidrs | |
| class IoK8sApiNetworkingV1beta1ServiceCIDRSpec(BaseModel): | |
| description: str | |
| properties: Properties486 | |
| type: str | |
| class Items359(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions23(BaseModel): | |
| description: str | |
| items: Items359 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties487(BaseModel): | |
| conditions: Conditions23 | |
| class IoK8sApiNetworkingV1beta1ServiceCIDRStatus(BaseModel): | |
| description: str | |
| properties: Properties487 | |
| type: str | |
| class AdditionalProperties35(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class PodFixed(BaseModel): | |
| additionalProperties: AdditionalProperties35 | |
| description: str | |
| type: str | |
| class Properties488(BaseModel): | |
| podFixed: PodFixed | |
| class IoK8sApiNodeV1Overhead(BaseModel): | |
| description: str | |
| properties: Properties488 | |
| type: str | |
| class Handler(BaseModel): | |
| description: str | |
| type: str | |
| class Overhead1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Scheduling(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties489(BaseModel): | |
| apiVersion: ApiVersion | |
| handler: Handler | |
| kind: Kind | |
| metadata: Metadata49 | |
| overhead: Overhead1 | |
| scheduling: Scheduling | |
| class IoK8sApiNodeV1RuntimeClass(BaseModel): | |
| description: str | |
| properties: Properties489 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items360(BaseModel): | |
| description: str | |
| items: Items359 | |
| type: str | |
| class Properties490(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items360 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiNodeV1RuntimeClassList(BaseModel): | |
| description: str | |
| properties: Properties490 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AdditionalProperties36(BaseModel): | |
| type: str | |
| class NodeSelector1(BaseModel): | |
| additionalProperties: AdditionalProperties36 | |
| description: str | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items362(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Tolerations1(BaseModel): | |
| description: str | |
| items: Items362 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties491(BaseModel): | |
| nodeSelector: NodeSelector1 | |
| tolerations: Tolerations1 | |
| class IoK8sApiNodeV1Scheduling(BaseModel): | |
| description: str | |
| properties: Properties491 | |
| type: str | |
| class DeleteOptions(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties492(BaseModel): | |
| apiVersion: ApiVersion | |
| deleteOptions: DeleteOptions | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiPolicyV1Eviction(BaseModel): | |
| description: str | |
| properties: Properties492 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties493(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiPolicyV1PodDisruptionBudget(BaseModel): | |
| description: str | |
| properties: Properties493 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items363(BaseModel): | |
| description: str | |
| items: Items362 | |
| type: str | |
| class Properties494(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items363 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiPolicyV1PodDisruptionBudgetList(BaseModel): | |
| description: str | |
| properties: Properties494 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class MinAvailable(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Selector13(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class UnhealthyPodEvictionPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Properties495(BaseModel): | |
| maxUnavailable: MaxUnavailable | |
| minAvailable: MinAvailable | |
| selector: Selector13 | |
| unhealthyPodEvictionPolicy: UnhealthyPodEvictionPolicy | |
| class IoK8sApiPolicyV1PodDisruptionBudgetSpec(BaseModel): | |
| description: str | |
| properties: Properties495 | |
| type: str | |
| class Items365(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions24(BaseModel): | |
| description: str | |
| items: Items365 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class CurrentHealthy(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class DesiredHealthy(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class AdditionalProperties37(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class DisruptedPods(BaseModel): | |
| additionalProperties: AdditionalProperties37 | |
| description: str | |
| type: str | |
| class DisruptionsAllowed(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class ExpectedPods(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties496(BaseModel): | |
| conditions: Conditions24 | |
| currentHealthy: CurrentHealthy | |
| desiredHealthy: DesiredHealthy | |
| disruptedPods: DisruptedPods | |
| disruptionsAllowed: DisruptionsAllowed | |
| expectedPods: ExpectedPods | |
| observedGeneration: ObservedGeneration | |
| class IoK8sApiPolicyV1PodDisruptionBudgetStatus(BaseModel): | |
| description: str | |
| properties: Properties496 | |
| required: List[str] | |
| type: str | |
| class ClusterRoleSelectors(BaseModel): | |
| description: str | |
| items: Items365 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties497(BaseModel): | |
| clusterRoleSelectors: ClusterRoleSelectors | |
| class IoK8sApiRbacV1AggregationRule(BaseModel): | |
| description: str | |
| properties: Properties497 | |
| type: str | |
| class AggregationRule(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Rules7(BaseModel): | |
| description: str | |
| items: Items365 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties498(BaseModel): | |
| aggregationRule: AggregationRule | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| rules: Rules7 | |
| class IoK8sApiRbacV1ClusterRole(BaseModel): | |
| description: str | |
| properties: Properties498 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class RoleRef(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Subjects2(BaseModel): | |
| description: str | |
| items: Items365 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties499(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| roleRef: RoleRef | |
| subjects: Subjects2 | |
| class IoK8sApiRbacV1ClusterRoleBinding(BaseModel): | |
| description: str | |
| properties: Properties499 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items369(BaseModel): | |
| description: str | |
| items: Items365 | |
| type: str | |
| class Properties500(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items369 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiRbacV1ClusterRoleBindingList(BaseModel): | |
| description: str | |
| properties: Properties500 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items372(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items371(BaseModel): | |
| description: str | |
| items: Items372 | |
| type: str | |
| class Properties501(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items371 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiRbacV1ClusterRoleList(BaseModel): | |
| description: str | |
| properties: Properties501 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items373(BaseModel): | |
| type: str | |
| class ApiGroups7(BaseModel): | |
| description: str | |
| items: Items373 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class NonResourceURLs3(BaseModel): | |
| description: str | |
| items: Items373 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ResourceNames4(BaseModel): | |
| description: str | |
| items: Items373 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Resources12(BaseModel): | |
| description: str | |
| items: Items373 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Verbs6(BaseModel): | |
| description: str | |
| items: Items373 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties502(BaseModel): | |
| apiGroups: ApiGroups7 | |
| nonResourceURLs: NonResourceURLs3 | |
| resourceNames: ResourceNames4 | |
| resources: Resources12 | |
| verbs: Verbs6 | |
| class IoK8sApiRbacV1PolicyRule(BaseModel): | |
| description: str | |
| properties: Properties502 | |
| required: List[str] | |
| type: str | |
| class Items378(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Rules8(BaseModel): | |
| description: str | |
| items: Items378 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties503(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| rules: Rules8 | |
| class IoK8sApiRbacV1Role(BaseModel): | |
| description: str | |
| properties: Properties503 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Subjects3(BaseModel): | |
| description: str | |
| items: Items378 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties504(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| roleRef: RoleRef | |
| subjects: Subjects3 | |
| class IoK8sApiRbacV1RoleBinding(BaseModel): | |
| description: str | |
| properties: Properties504 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items380(BaseModel): | |
| description: str | |
| items: Items378 | |
| type: str | |
| class Properties505(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items380 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiRbacV1RoleBindingList(BaseModel): | |
| description: str | |
| properties: Properties505 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items383(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items382(BaseModel): | |
| description: str | |
| items: Items383 | |
| type: str | |
| class Properties506(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items382 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiRbacV1RoleList(BaseModel): | |
| description: str | |
| properties: Properties506 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties507(BaseModel): | |
| apiGroup: ApiGroup | |
| kind: Kind | |
| name: Name | |
| class IoK8sApiRbacV1RoleRef(BaseModel): | |
| description: str | |
| properties: Properties507 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Properties508(BaseModel): | |
| apiGroup: ApiGroup | |
| kind: Kind | |
| name: Name | |
| namespace: Namespace | |
| class IoK8sApiRbacV1Subject(BaseModel): | |
| description: str | |
| properties: Properties508 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Devices(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class NodeSelector2(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties509(BaseModel): | |
| controller: Controller | |
| devices: Devices | |
| nodeSelector: NodeSelector2 | |
| class IoK8sApiResourceV1alpha3AllocationResult(BaseModel): | |
| description: str | |
| properties: Properties509 | |
| type: str | |
| class Attributes(BaseModel): | |
| additionalProperties: AdditionalProperties37 | |
| description: str | |
| type: str | |
| class Capacity3(BaseModel): | |
| additionalProperties: AdditionalProperties37 | |
| description: str | |
| type: str | |
| class Properties510(BaseModel): | |
| attributes: Attributes | |
| capacity: Capacity3 | |
| class IoK8sApiResourceV1alpha3BasicDevice(BaseModel): | |
| description: str | |
| properties: Properties510 | |
| type: str | |
| class Properties511(BaseModel): | |
| expression: Expression | |
| class IoK8sApiResourceV1alpha3CELDeviceSelector(BaseModel): | |
| description: str | |
| properties: Properties511 | |
| required: List[str] | |
| type: str | |
| class Basic(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties512(BaseModel): | |
| basic: Basic | |
| name: Name | |
| class IoK8sApiResourceV1alpha3Device(BaseModel): | |
| description: str | |
| properties: Properties512 | |
| required: List[str] | |
| type: str | |
| class Opaque(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items384(BaseModel): | |
| type: str | |
| class Requests2(BaseModel): | |
| description: str | |
| items: Items384 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Source1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties513(BaseModel): | |
| opaque: Opaque | |
| requests: Requests2 | |
| source: Source1 | |
| class IoK8sApiResourceV1alpha3DeviceAllocationConfiguration(BaseModel): | |
| description: str | |
| properties: Properties513 | |
| required: List[str] | |
| type: str | |
| class Items385(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Config1(BaseModel): | |
| description: str | |
| items: Items385 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Results(BaseModel): | |
| description: str | |
| items: Items385 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties514(BaseModel): | |
| config: Config1 | |
| results: Results | |
| class IoK8sApiResourceV1alpha3DeviceAllocationResult(BaseModel): | |
| description: str | |
| properties: Properties514 | |
| type: str | |
| class Bool(BaseModel): | |
| description: str | |
| type: str | |
| class Int(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class String(BaseModel): | |
| description: str | |
| type: str | |
| class Properties515(BaseModel): | |
| bool: Bool | |
| int: Int | |
| string: String | |
| version: Version | |
| class IoK8sApiResourceV1alpha3DeviceAttribute(BaseModel): | |
| description: str | |
| properties: Properties515 | |
| type: str | |
| class Config2(BaseModel): | |
| description: str | |
| items: Items385 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Constraints(BaseModel): | |
| description: str | |
| items: Items385 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Requests3(BaseModel): | |
| description: str | |
| items: Items385 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties516(BaseModel): | |
| config: Config2 | |
| constraints: Constraints | |
| requests: Requests3 | |
| class IoK8sApiResourceV1alpha3DeviceClaim(BaseModel): | |
| description: str | |
| properties: Properties516 | |
| type: str | |
| class Items390(BaseModel): | |
| type: str | |
| class Requests4(BaseModel): | |
| description: str | |
| items: Items390 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties517(BaseModel): | |
| opaque: Opaque | |
| requests: Requests4 | |
| class IoK8sApiResourceV1alpha3DeviceClaimConfiguration(BaseModel): | |
| description: str | |
| properties: Properties517 | |
| type: str | |
| class Properties518(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiResourceV1alpha3DeviceClass(BaseModel): | |
| description: str | |
| properties: Properties518 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties519(BaseModel): | |
| opaque: Opaque | |
| class IoK8sApiResourceV1alpha3DeviceClassConfiguration(BaseModel): | |
| description: str | |
| properties: Properties519 | |
| type: str | |
| class Items392(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items391(BaseModel): | |
| description: str | |
| items: Items392 | |
| type: str | |
| class Properties520(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items391 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiResourceV1alpha3DeviceClassList(BaseModel): | |
| description: str | |
| properties: Properties520 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items393(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Config3(BaseModel): | |
| description: str | |
| items: Items393 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Selectors(BaseModel): | |
| description: str | |
| items: Items393 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SuitableNodes(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties521(BaseModel): | |
| config: Config3 | |
| selectors: Selectors | |
| suitableNodes: SuitableNodes | |
| class IoK8sApiResourceV1alpha3DeviceClassSpec(BaseModel): | |
| description: str | |
| properties: Properties521 | |
| type: str | |
| class MatchAttribute(BaseModel): | |
| description: str | |
| type: str | |
| class Items395(BaseModel): | |
| type: str | |
| class Requests5(BaseModel): | |
| description: str | |
| items: Items395 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties522(BaseModel): | |
| matchAttribute: MatchAttribute | |
| requests: Requests5 | |
| class IoK8sApiResourceV1alpha3DeviceConstraint(BaseModel): | |
| description: str | |
| properties: Properties522 | |
| type: str | |
| class AdminAccess(BaseModel): | |
| description: str | |
| type: str | |
| class AllocationMode(BaseModel): | |
| description: str | |
| type: str | |
| class DeviceClassName(BaseModel): | |
| description: str | |
| type: str | |
| class Items396(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Selectors1(BaseModel): | |
| description: str | |
| items: Items396 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties523(BaseModel): | |
| adminAccess: AdminAccess | |
| allocationMode: AllocationMode | |
| count: Count | |
| deviceClassName: DeviceClassName | |
| name: Name | |
| selectors: Selectors1 | |
| class IoK8sApiResourceV1alpha3DeviceRequest(BaseModel): | |
| description: str | |
| properties: Properties523 | |
| required: List[str] | |
| type: str | |
| class Device(BaseModel): | |
| description: str | |
| type: str | |
| class Properties524(BaseModel): | |
| device: Device | |
| driver: Driver | |
| pool: Pool | |
| request: Request1 | |
| class IoK8sApiResourceV1alpha3DeviceRequestAllocationResult(BaseModel): | |
| description: str | |
| properties: Properties524 | |
| required: List[str] | |
| type: str | |
| class Cel(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties525(BaseModel): | |
| cel: Cel | |
| class IoK8sApiResourceV1alpha3DeviceSelector(BaseModel): | |
| description: str | |
| properties: Properties525 | |
| type: str | |
| class Properties526(BaseModel): | |
| driver: Driver | |
| parameters: Parameters | |
| class IoK8sApiResourceV1alpha3OpaqueDeviceConfiguration(BaseModel): | |
| description: str | |
| properties: Properties526 | |
| required: List[str] | |
| type: str | |
| class Properties527(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiResourceV1alpha3PodSchedulingContext(BaseModel): | |
| description: str | |
| properties: Properties527 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items397(BaseModel): | |
| description: str | |
| items: Items396 | |
| type: str | |
| class Properties528(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items397 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiResourceV1alpha3PodSchedulingContextList(BaseModel): | |
| description: str | |
| properties: Properties528 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items399(BaseModel): | |
| type: str | |
| class PotentialNodes(BaseModel): | |
| description: str | |
| items: Items399 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SelectedNode(BaseModel): | |
| description: str | |
| type: str | |
| class Properties529(BaseModel): | |
| potentialNodes: PotentialNodes | |
| selectedNode: SelectedNode | |
| class IoK8sApiResourceV1alpha3PodSchedulingContextSpec(BaseModel): | |
| description: str | |
| properties: Properties529 | |
| type: str | |
| class Items400(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ResourceClaims1(BaseModel): | |
| description: str | |
| items: Items400 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties530(BaseModel): | |
| resourceClaims: ResourceClaims1 | |
| class IoK8sApiResourceV1alpha3PodSchedulingContextStatus(BaseModel): | |
| description: str | |
| properties: Properties530 | |
| type: str | |
| class Properties531(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiResourceV1alpha3ResourceClaim(BaseModel): | |
| description: str | |
| properties: Properties531 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties532(BaseModel): | |
| apiGroup: ApiGroup | |
| name: Name | |
| resource: Resource5 | |
| uid: Uid6 | |
| class IoK8sApiResourceV1alpha3ResourceClaimConsumerReference(BaseModel): | |
| description: str | |
| properties: Properties532 | |
| required: List[str] | |
| type: str | |
| class Items401(BaseModel): | |
| description: str | |
| items: Items400 | |
| type: str | |
| class Properties533(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items401 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiResourceV1alpha3ResourceClaimList(BaseModel): | |
| description: str | |
| properties: Properties533 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items403(BaseModel): | |
| type: str | |
| class UnsuitableNodes(BaseModel): | |
| description: str | |
| items: Items403 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties534(BaseModel): | |
| name: Name | |
| unsuitableNodes: UnsuitableNodes | |
| class IoK8sApiResourceV1alpha3ResourceClaimSchedulingStatus(BaseModel): | |
| description: str | |
| properties: Properties534 | |
| required: List[str] | |
| type: str | |
| class Properties535(BaseModel): | |
| controller: Controller | |
| devices: Devices | |
| class IoK8sApiResourceV1alpha3ResourceClaimSpec(BaseModel): | |
| description: str | |
| properties: Properties535 | |
| type: str | |
| class Allocation(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DeallocationRequested(BaseModel): | |
| description: str | |
| type: str | |
| class Items404(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ReservedFor(BaseModel): | |
| description: str | |
| items: Items404 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties536(BaseModel): | |
| allocation: Allocation | |
| deallocationRequested: DeallocationRequested | |
| reservedFor: ReservedFor | |
| class IoK8sApiResourceV1alpha3ResourceClaimStatus(BaseModel): | |
| description: str | |
| properties: Properties536 | |
| type: str | |
| class Properties537(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiResourceV1alpha3ResourceClaimTemplate(BaseModel): | |
| description: str | |
| properties: Properties537 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items405(BaseModel): | |
| description: str | |
| items: Items404 | |
| type: str | |
| class Properties538(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items405 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiResourceV1alpha3ResourceClaimTemplateList(BaseModel): | |
| description: str | |
| properties: Properties538 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties539(BaseModel): | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiResourceV1alpha3ResourceClaimTemplateSpec(BaseModel): | |
| description: str | |
| properties: Properties539 | |
| required: List[str] | |
| type: str | |
| class Generation(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class ResourceSliceCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties540(BaseModel): | |
| generation: Generation | |
| name: Name | |
| resourceSliceCount: ResourceSliceCount | |
| class IoK8sApiResourceV1alpha3ResourcePool(BaseModel): | |
| description: str | |
| properties: Properties540 | |
| required: List[str] | |
| type: str | |
| class Properties541(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiResourceV1alpha3ResourceSlice(BaseModel): | |
| description: str | |
| properties: Properties541 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items408(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items407(BaseModel): | |
| description: str | |
| items: Items408 | |
| type: str | |
| class ListMeta(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties542(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items407 | |
| kind: Kind | |
| listMeta: ListMeta | |
| class IoK8sApiResourceV1alpha3ResourceSliceList(BaseModel): | |
| description: str | |
| properties: Properties542 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AllNodes(BaseModel): | |
| description: str | |
| type: str | |
| class Items409(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Devices2(BaseModel): | |
| description: str | |
| items: Items409 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Pool3(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties543(BaseModel): | |
| allNodes: AllNodes | |
| devices: Devices2 | |
| driver: Driver | |
| nodeName: NodeName | |
| nodeSelector: NodeSelector2 | |
| pool: Pool3 | |
| class IoK8sApiResourceV1alpha3ResourceSliceSpec(BaseModel): | |
| description: str | |
| properties: Properties543 | |
| required: List[str] | |
| type: str | |
| class Description(BaseModel): | |
| description: str | |
| type: str | |
| class GlobalDefault(BaseModel): | |
| description: str | |
| type: str | |
| class Value9(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties544(BaseModel): | |
| apiVersion: ApiVersion | |
| description: Description | |
| globalDefault: GlobalDefault | |
| kind: Kind | |
| metadata: Metadata49 | |
| preemptionPolicy: PreemptionPolicy | |
| value: Value9 | |
| class IoK8sApiSchedulingV1PriorityClass(BaseModel): | |
| description: str | |
| properties: Properties544 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items410(BaseModel): | |
| description: str | |
| items: Items409 | |
| type: str | |
| class Properties545(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items410 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiSchedulingV1PriorityClassList(BaseModel): | |
| description: str | |
| properties: Properties545 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties546(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiStorageV1CSIDriver(BaseModel): | |
| description: str | |
| properties: Properties546 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items413(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items412(BaseModel): | |
| description: str | |
| items: Items413 | |
| type: str | |
| class Properties547(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items412 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1CSIDriverList(BaseModel): | |
| description: str | |
| properties: Properties547 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AttachRequired(BaseModel): | |
| description: str | |
| type: str | |
| class FsGroupPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class PodInfoOnMount(BaseModel): | |
| description: str | |
| type: str | |
| class RequiresRepublish(BaseModel): | |
| description: str | |
| type: str | |
| class SeLinuxMount(BaseModel): | |
| description: str | |
| type: str | |
| class StorageCapacity(BaseModel): | |
| description: str | |
| type: str | |
| class Items414(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class TokenRequests(BaseModel): | |
| description: str | |
| items: Items414 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items415(BaseModel): | |
| type: str | |
| class VolumeLifecycleModes(BaseModel): | |
| description: str | |
| items: Items415 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties548(BaseModel): | |
| attachRequired: AttachRequired | |
| fsGroupPolicy: FsGroupPolicy | |
| podInfoOnMount: PodInfoOnMount | |
| requiresRepublish: RequiresRepublish | |
| seLinuxMount: SeLinuxMount | |
| storageCapacity: StorageCapacity | |
| tokenRequests: TokenRequests | |
| volumeLifecycleModes: VolumeLifecycleModes | |
| class IoK8sApiStorageV1CSIDriverSpec(BaseModel): | |
| description: str | |
| properties: Properties548 | |
| type: str | |
| class Properties549(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| class IoK8sApiStorageV1CSINode(BaseModel): | |
| description: str | |
| properties: Properties549 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Allocatable1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class NodeID(BaseModel): | |
| description: str | |
| type: str | |
| class TopologyKeys(BaseModel): | |
| description: str | |
| items: Items415 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties550(BaseModel): | |
| allocatable: Allocatable1 | |
| name: Name | |
| nodeID: NodeID | |
| topologyKeys: TopologyKeys | |
| class IoK8sApiStorageV1CSINodeDriver(BaseModel): | |
| description: str | |
| properties: Properties550 | |
| required: List[str] | |
| type: str | |
| class Items418(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items417(BaseModel): | |
| description: str | |
| items: Items418 | |
| type: str | |
| class Properties551(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items417 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1CSINodeList(BaseModel): | |
| description: str | |
| properties: Properties551 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items419(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Drivers(BaseModel): | |
| description: str | |
| items: Items419 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties552(BaseModel): | |
| drivers: Drivers | |
| class IoK8sApiStorageV1CSINodeSpec(BaseModel): | |
| description: str | |
| properties: Properties552 | |
| required: List[str] | |
| type: str | |
| class Capacity4(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class MaximumVolumeSize(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class NodeTopology(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties553(BaseModel): | |
| apiVersion: ApiVersion | |
| capacity: Capacity4 | |
| kind: Kind | |
| maximumVolumeSize: MaximumVolumeSize | |
| metadata: Metadata49 | |
| nodeTopology: NodeTopology | |
| storageClassName: StorageClassName | |
| class IoK8sApiStorageV1CSIStorageCapacity(BaseModel): | |
| description: str | |
| properties: Properties553 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items420(BaseModel): | |
| description: str | |
| items: Items419 | |
| type: str | |
| class Properties554(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items420 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1CSIStorageCapacityList(BaseModel): | |
| description: str | |
| properties: Properties554 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class AllowVolumeExpansion(BaseModel): | |
| description: str | |
| type: str | |
| class Items422(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AllowedTopologies(BaseModel): | |
| description: str | |
| items: Items422 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items423(BaseModel): | |
| type: str | |
| class MountOptions1(BaseModel): | |
| description: str | |
| items: Items423 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class AdditionalProperties40(BaseModel): | |
| type: str | |
| class Parameters2(BaseModel): | |
| additionalProperties: AdditionalProperties40 | |
| description: str | |
| type: str | |
| class Provisioner(BaseModel): | |
| description: str | |
| type: str | |
| class ReclaimPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class VolumeBindingMode(BaseModel): | |
| description: str | |
| type: str | |
| class Properties555(BaseModel): | |
| allowVolumeExpansion: AllowVolumeExpansion | |
| allowedTopologies: AllowedTopologies | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| mountOptions: MountOptions1 | |
| parameters: Parameters2 | |
| provisioner: Provisioner | |
| reclaimPolicy: ReclaimPolicy | |
| volumeBindingMode: VolumeBindingMode | |
| class IoK8sApiStorageV1StorageClass(BaseModel): | |
| description: str | |
| properties: Properties555 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items425(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items424(BaseModel): | |
| description: str | |
| items: Items425 | |
| type: str | |
| class Properties556(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items424 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1StorageClassList(BaseModel): | |
| description: str | |
| properties: Properties556 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties557(BaseModel): | |
| audience: Audience | |
| expirationSeconds: ExpirationSeconds | |
| class IoK8sApiStorageV1TokenRequest(BaseModel): | |
| description: str | |
| properties: Properties557 | |
| required: List[str] | |
| type: str | |
| class Properties558(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status55 | |
| class IoK8sApiStorageV1VolumeAttachment(BaseModel): | |
| description: str | |
| properties: Properties558 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items427(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items426(BaseModel): | |
| description: str | |
| items: Items427 | |
| type: str | |
| class Properties559(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items426 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1VolumeAttachmentList(BaseModel): | |
| description: str | |
| properties: Properties559 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class InlineVolumeSpec(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PersistentVolumeName(BaseModel): | |
| description: str | |
| type: str | |
| class Properties560(BaseModel): | |
| inlineVolumeSpec: InlineVolumeSpec | |
| persistentVolumeName: PersistentVolumeName | |
| class IoK8sApiStorageV1VolumeAttachmentSource(BaseModel): | |
| description: str | |
| properties: Properties560 | |
| type: str | |
| class Attacher(BaseModel): | |
| description: str | |
| type: str | |
| class Source2(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties561(BaseModel): | |
| attacher: Attacher | |
| nodeName: NodeName | |
| source: Source2 | |
| class IoK8sApiStorageV1VolumeAttachmentSpec(BaseModel): | |
| description: str | |
| properties: Properties561 | |
| required: List[str] | |
| type: str | |
| class AttachError(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Attached(BaseModel): | |
| description: str | |
| type: str | |
| class AttachmentMetadata(BaseModel): | |
| additionalProperties: AdditionalProperties40 | |
| description: str | |
| type: str | |
| class DetachError(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties562(BaseModel): | |
| attachError: AttachError | |
| attached: Attached | |
| attachmentMetadata: AttachmentMetadata | |
| detachError: DetachError | |
| class IoK8sApiStorageV1VolumeAttachmentStatus(BaseModel): | |
| description: str | |
| properties: Properties562 | |
| required: List[str] | |
| type: str | |
| class Time(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties563(BaseModel): | |
| message: Message16 | |
| time: Time | |
| class IoK8sApiStorageV1VolumeError(BaseModel): | |
| description: str | |
| properties: Properties563 | |
| type: str | |
| class Properties564(BaseModel): | |
| count: Count | |
| class IoK8sApiStorageV1VolumeNodeResources(BaseModel): | |
| description: str | |
| properties: Properties564 | |
| type: str | |
| class DriverName(BaseModel): | |
| description: str | |
| type: str | |
| class Parameters3(BaseModel): | |
| additionalProperties: AdditionalProperties40 | |
| description: str | |
| type: str | |
| class Properties565(BaseModel): | |
| apiVersion: ApiVersion | |
| driverName: DriverName | |
| kind: Kind | |
| metadata: Metadata49 | |
| parameters: Parameters3 | |
| class IoK8sApiStorageV1alpha1VolumeAttributesClass(BaseModel): | |
| description: str | |
| properties: Properties565 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items429(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items428(BaseModel): | |
| description: str | |
| items: Items429 | |
| type: str | |
| class Properties566(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items428 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1alpha1VolumeAttributesClassList(BaseModel): | |
| description: str | |
| properties: Properties566 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Parameters4(BaseModel): | |
| additionalProperties: AdditionalProperties40 | |
| description: str | |
| type: str | |
| class Properties567(BaseModel): | |
| apiVersion: ApiVersion | |
| driverName: DriverName | |
| kind: Kind | |
| metadata: Metadata49 | |
| parameters: Parameters4 | |
| class IoK8sApiStorageV1beta1VolumeAttributesClass(BaseModel): | |
| description: str | |
| properties: Properties567 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items431(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items430(BaseModel): | |
| description: str | |
| items: Items431 | |
| type: str | |
| class Properties568(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items430 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStorageV1beta1VolumeAttributesClassList(BaseModel): | |
| description: str | |
| properties: Properties568 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Properties569(BaseModel): | |
| group: Group4 | |
| resource: Resource5 | |
| version: Version | |
| class IoK8sApiStoragemigrationV1alpha1GroupVersionResource(BaseModel): | |
| description: str | |
| properties: Properties569 | |
| type: str | |
| class Status61(BaseModel): | |
| description: str | |
| type: str | |
| class Properties570(BaseModel): | |
| lastUpdateTime: LastUpdateTime | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status61 | |
| type: Type25 | |
| class IoK8sApiStoragemigrationV1alpha1MigrationCondition(BaseModel): | |
| description: str | |
| properties: Properties570 | |
| required: List[str] | |
| type: str | |
| class Status62(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties571(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status62 | |
| class IoK8sApiStoragemigrationV1alpha1StorageVersionMigration(BaseModel): | |
| description: str | |
| properties: Properties571 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items433(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Items432(BaseModel): | |
| description: str | |
| items: Items433 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties572(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items432 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationList(BaseModel): | |
| description: str | |
| properties: Properties572 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ContinueToken(BaseModel): | |
| description: str | |
| type: str | |
| class Resource8(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties573(BaseModel): | |
| continueToken: ContinueToken | |
| resource: Resource8 | |
| class IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationSpec(BaseModel): | |
| description: str | |
| properties: Properties573 | |
| required: List[str] | |
| type: str | |
| class Items434(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions25(BaseModel): | |
| description: str | |
| items: Items434 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties574(BaseModel): | |
| conditions: Conditions25 | |
| resourceVersion: ResourceVersion | |
| class IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationStatus(BaseModel): | |
| description: str | |
| properties: Properties574 | |
| type: str | |
| class Format(BaseModel): | |
| description: str | |
| type: str | |
| class JsonPath(BaseModel): | |
| description: str | |
| type: str | |
| class Properties575(BaseModel): | |
| description: Description | |
| format: Format | |
| jsonPath: JsonPath | |
| name: Name | |
| priority: Priority | |
| type: Type25 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceColumnDefinition( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties575 | |
| required: List[str] | |
| type: str | |
| class Webhook(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties576(BaseModel): | |
| strategy: Strategy1 | |
| webhook: Webhook | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceConversion( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties576 | |
| required: List[str] | |
| type: str | |
| class Properties577(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status62 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties577 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status64(BaseModel): | |
| description: str | |
| type: str | |
| class Properties578(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status64 | |
| type: Type25 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionCondition( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties578 | |
| required: List[str] | |
| type: str | |
| class Items435(BaseModel): | |
| description: str | |
| items: Items434 | |
| type: str | |
| class Properties579(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items435 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionList( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties579 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items437(BaseModel): | |
| type: str | |
| class Categories(BaseModel): | |
| description: str | |
| items: Items437 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class ListKind(BaseModel): | |
| description: str | |
| type: str | |
| class Plural(BaseModel): | |
| description: str | |
| type: str | |
| class ShortNames(BaseModel): | |
| description: str | |
| items: Items437 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Singular(BaseModel): | |
| description: str | |
| type: str | |
| class Properties580(BaseModel): | |
| categories: Categories | |
| kind: Kind | |
| listKind: ListKind | |
| plural: Plural | |
| shortNames: ShortNames | |
| singular: Singular | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionNames( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties580 | |
| required: List[str] | |
| type: str | |
| class Conversion(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Names1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PreserveUnknownFields(BaseModel): | |
| description: str | |
| type: str | |
| class Items439(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Versions(BaseModel): | |
| description: str | |
| items: Items439 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties581(BaseModel): | |
| conversion: Conversion | |
| group: Group4 | |
| names: Names1 | |
| preserveUnknownFields: PreserveUnknownFields | |
| scope: Scope | |
| versions: Versions | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionSpec( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties581 | |
| required: List[str] | |
| type: str | |
| class AcceptedNames(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Conditions26(BaseModel): | |
| description: str | |
| items: Items439 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items441(BaseModel): | |
| type: str | |
| class StoredVersions(BaseModel): | |
| description: str | |
| items: Items441 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties582(BaseModel): | |
| acceptedNames: AcceptedNames | |
| conditions: Conditions26 | |
| storedVersions: StoredVersions | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionStatus( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties582 | |
| type: str | |
| class Items442(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AdditionalPrinterColumns(BaseModel): | |
| description: str | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Deprecated(BaseModel): | |
| description: str | |
| type: str | |
| class DeprecationWarning(BaseModel): | |
| description: str | |
| type: str | |
| class Schema(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class SelectableFields(BaseModel): | |
| description: str | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Served(BaseModel): | |
| description: str | |
| type: str | |
| class Storage(BaseModel): | |
| description: str | |
| type: str | |
| class Subresources(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties583(BaseModel): | |
| additionalPrinterColumns: AdditionalPrinterColumns | |
| deprecated: Deprecated | |
| deprecationWarning: DeprecationWarning | |
| name: Name | |
| schema_: Schema = Field(..., alias='schema') | |
| selectableFields: SelectableFields | |
| served: Served | |
| storage: Storage | |
| subresources: Subresources | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionVersion( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties583 | |
| required: List[str] | |
| type: str | |
| class LabelSelectorPath(BaseModel): | |
| description: str | |
| type: str | |
| class SpecReplicasPath(BaseModel): | |
| description: str | |
| type: str | |
| class StatusReplicasPath(BaseModel): | |
| description: str | |
| type: str | |
| class Properties584(BaseModel): | |
| labelSelectorPath: LabelSelectorPath | |
| specReplicasPath: SpecReplicasPath | |
| statusReplicasPath: StatusReplicasPath | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresourceScale( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties584 | |
| required: List[str] | |
| type: str | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresourceStatus( | |
| BaseModel | |
| ): | |
| description: str | |
| type: str | |
| class Scale(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Status65(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties585(BaseModel): | |
| scale: Scale | |
| status: Status65 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresources( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties585 | |
| type: str | |
| class OpenAPIV3Schema(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties586(BaseModel): | |
| openAPIV3Schema: OpenAPIV3Schema | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceValidation( | |
| BaseModel | |
| ): | |
| description: str | |
| properties: Properties586 | |
| type: str | |
| class Description2(BaseModel): | |
| type: str | |
| class Url1(BaseModel): | |
| type: str | |
| class Properties587(BaseModel): | |
| description: Description2 | |
| url: Url1 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1ExternalDocumentation(BaseModel): | |
| description: str | |
| properties: Properties587 | |
| type: str | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSON(BaseModel): | |
| description: str | |
| class FieldRef5(BaseModel): | |
| type: str | |
| class FieldSchema(BaseModel): | |
| type: str | |
| class AdditionalItems(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AdditionalProperties44(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class AllOf(BaseModel): | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class AnyOf(BaseModel): | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Default1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Definitions1(BaseModel): | |
| additionalProperties: AdditionalProperties44 | |
| type: str | |
| class Dependencies(BaseModel): | |
| additionalProperties: AdditionalProperties44 | |
| type: str | |
| class Enum(BaseModel): | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Example(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ExclusiveMaximum(BaseModel): | |
| type: str | |
| class ExclusiveMinimum(BaseModel): | |
| type: str | |
| class ExternalDocs(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Id(BaseModel): | |
| type: str | |
| class MaxItems(BaseModel): | |
| format: str | |
| type: str | |
| class MaxLength(BaseModel): | |
| format: str | |
| type: str | |
| class MaxProperties(BaseModel): | |
| format: str | |
| type: str | |
| class Maximum(BaseModel): | |
| format: str | |
| type: str | |
| class MinItems(BaseModel): | |
| format: str | |
| type: str | |
| class MinLength(BaseModel): | |
| format: str | |
| type: str | |
| class MinProperties(BaseModel): | |
| format: str | |
| type: str | |
| class Minimum(BaseModel): | |
| format: str | |
| type: str | |
| class MultipleOf(BaseModel): | |
| format: str | |
| type: str | |
| class Not(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Nullable(BaseModel): | |
| type: str | |
| class OneOf(BaseModel): | |
| items: Items442 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Pattern(BaseModel): | |
| type: str | |
| class PatternProperties(BaseModel): | |
| additionalProperties: AdditionalProperties44 | |
| type: str | |
| class Properties589(BaseModel): | |
| additionalProperties: AdditionalProperties44 | |
| type: str | |
| class Items449(BaseModel): | |
| type: str | |
| class Required1(BaseModel): | |
| items: Items449 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Title(BaseModel): | |
| type: str | |
| class Type45(BaseModel): | |
| type: str | |
| class UniqueItems(BaseModel): | |
| type: str | |
| class XKubernetesEmbeddedResource(BaseModel): | |
| description: str | |
| type: str | |
| class XKubernetesIntOrString(BaseModel): | |
| description: str | |
| type: str | |
| class XKubernetesListMapKeys(BaseModel): | |
| description: str | |
| items: Items449 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class XKubernetesListType(BaseModel): | |
| description: str | |
| type: str | |
| class XKubernetesMapType(BaseModel): | |
| description: str | |
| type: str | |
| class XKubernetesPreserveUnknownFields(BaseModel): | |
| description: str | |
| type: str | |
| class Items451(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class XKubernetesValidations(BaseModel): | |
| description: str | |
| items: Items451 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties588(BaseModel): | |
| field_ref: FieldRef5 = Field(..., alias='$ref') | |
| field_schema: FieldSchema = Field(..., alias='$schema') | |
| additionalItems: AdditionalItems | |
| additionalProperties: AdditionalProperties44 | |
| allOf: AllOf | |
| anyOf: AnyOf | |
| default: Default1 | |
| definitions: Definitions1 | |
| dependencies: Dependencies | |
| description: Description2 | |
| enum: Enum | |
| example: Example | |
| exclusiveMaximum: ExclusiveMaximum | |
| exclusiveMinimum: ExclusiveMinimum | |
| externalDocs: ExternalDocs | |
| format: Format | |
| id: Id | |
| items: Items442 | |
| maxItems: MaxItems | |
| maxLength: MaxLength | |
| maxProperties: MaxProperties | |
| maximum: Maximum | |
| minItems: MinItems | |
| minLength: MinLength | |
| minProperties: MinProperties | |
| minimum: Minimum | |
| multipleOf: MultipleOf | |
| not_: Not = Field(..., alias='not') | |
| nullable: Nullable | |
| oneOf: OneOf | |
| pattern: Pattern | |
| patternProperties: PatternProperties | |
| properties: Properties589 | |
| required: Required1 | |
| title: Title | |
| type: Type45 | |
| uniqueItems: UniqueItems | |
| x_kubernetes_embedded_resource: XKubernetesEmbeddedResource = Field( | |
| ..., alias='x-kubernetes-embedded-resource' | |
| ) | |
| x_kubernetes_int_or_string: XKubernetesIntOrString = Field( | |
| ..., alias='x-kubernetes-int-or-string' | |
| ) | |
| x_kubernetes_list_map_keys: XKubernetesListMapKeys = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: XKubernetesListType = Field( | |
| ..., alias='x-kubernetes-list-type' | |
| ) | |
| x_kubernetes_map_type: XKubernetesMapType = Field( | |
| ..., alias='x-kubernetes-map-type' | |
| ) | |
| x_kubernetes_preserve_unknown_fields: XKubernetesPreserveUnknownFields = Field( | |
| ..., alias='x-kubernetes-preserve-unknown-fields' | |
| ) | |
| x_kubernetes_validations: XKubernetesValidations = Field( | |
| ..., alias='x-kubernetes-validations' | |
| ) | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaProps(BaseModel): | |
| description: str | |
| properties: Properties588 | |
| type: str | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrArray( | |
| BaseModel | |
| ): | |
| description: str | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrBool(BaseModel): | |
| description: str | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrStringArray( | |
| BaseModel | |
| ): | |
| description: str | |
| class Properties590(BaseModel): | |
| jsonPath: JsonPath | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1SelectableField(BaseModel): | |
| description: str | |
| properties: Properties590 | |
| required: List[str] | |
| type: str | |
| class Port12(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties591(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| path: Path | |
| port: Port12 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1ServiceReference(BaseModel): | |
| description: str | |
| properties: Properties591 | |
| required: List[str] | |
| type: str | |
| class OptionalOldSelf(BaseModel): | |
| description: str | |
| type: str | |
| class Rule(BaseModel): | |
| description: str | |
| type: str | |
| class Properties592(BaseModel): | |
| fieldPath: FieldPath | |
| message: Message16 | |
| messageExpression: MessageExpression | |
| optionalOldSelf: OptionalOldSelf | |
| reason: Reason16 | |
| rule: Rule | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1ValidationRule(BaseModel): | |
| description: str | |
| properties: Properties592 | |
| required: List[str] | |
| type: str | |
| class Url2(BaseModel): | |
| description: str | |
| type: str | |
| class Properties593(BaseModel): | |
| caBundle: CaBundle | |
| service: Service2 | |
| url: Url2 | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1WebhookClientConfig(BaseModel): | |
| description: str | |
| properties: Properties593 | |
| type: str | |
| class Items452(BaseModel): | |
| type: str | |
| class ConversionReviewVersions(BaseModel): | |
| description: str | |
| items: Items452 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties594(BaseModel): | |
| clientConfig: ClientConfig | |
| conversionReviewVersions: ConversionReviewVersions | |
| class IoK8sApiextensionsApiserverPkgApisApiextensionsV1WebhookConversion(BaseModel): | |
| description: str | |
| properties: Properties594 | |
| required: List[str] | |
| type: str | |
| class IoK8sApimachineryPkgApiResourceQuantity(BaseModel): | |
| description: str | |
| type: str | |
| class PreferredVersion(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Items453(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ServerAddressByClientCIDRs(BaseModel): | |
| description: str | |
| items: Items453 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Versions1(BaseModel): | |
| description: str | |
| items: Items453 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties595(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| name: Name | |
| preferredVersion: PreferredVersion | |
| serverAddressByClientCIDRs: ServerAddressByClientCIDRs | |
| versions: Versions1 | |
| class IoK8sApimachineryPkgApisMetaV1APIGroup(BaseModel): | |
| description: str | |
| properties: Properties595 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Groups3(BaseModel): | |
| description: str | |
| items: Items453 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties596(BaseModel): | |
| apiVersion: ApiVersion | |
| groups: Groups3 | |
| kind: Kind | |
| class IoK8sApimachineryPkgApisMetaV1APIGroupList(BaseModel): | |
| description: str | |
| properties: Properties596 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Items456(BaseModel): | |
| type: str | |
| class Categories1(BaseModel): | |
| description: str | |
| items: Items456 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Namespaced(BaseModel): | |
| description: str | |
| type: str | |
| class ShortNames1(BaseModel): | |
| description: str | |
| items: Items456 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class SingularName(BaseModel): | |
| description: str | |
| type: str | |
| class StorageVersionHash(BaseModel): | |
| description: str | |
| type: str | |
| class Verbs7(BaseModel): | |
| description: str | |
| items: Items456 | |
| type: str | |
| class Properties597(BaseModel): | |
| categories: Categories1 | |
| group: Group4 | |
| kind: Kind | |
| name: Name | |
| namespaced: Namespaced | |
| shortNames: ShortNames1 | |
| singularName: SingularName | |
| storageVersionHash: StorageVersionHash | |
| verbs: Verbs7 | |
| version: Version | |
| class IoK8sApimachineryPkgApisMetaV1APIResource(BaseModel): | |
| description: str | |
| properties: Properties597 | |
| required: List[str] | |
| type: str | |
| class GroupVersion(BaseModel): | |
| description: str | |
| type: str | |
| class Items459(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Resources13(BaseModel): | |
| description: str | |
| items: Items459 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties598(BaseModel): | |
| apiVersion: ApiVersion | |
| groupVersion: GroupVersion | |
| kind: Kind | |
| resources: Resources13 | |
| class IoK8sApimachineryPkgApisMetaV1APIResourceList(BaseModel): | |
| description: str | |
| properties: Properties598 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class ServerAddressByClientCIDRs1(BaseModel): | |
| description: str | |
| items: Items459 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Items461(BaseModel): | |
| type: str | |
| class Versions2(BaseModel): | |
| description: str | |
| items: Items461 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties599(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| serverAddressByClientCIDRs: ServerAddressByClientCIDRs1 | |
| versions: Versions2 | |
| class IoK8sApimachineryPkgApisMetaV1APIVersions(BaseModel): | |
| description: str | |
| properties: Properties599 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status66(BaseModel): | |
| description: str | |
| type: str | |
| class Type46(BaseModel): | |
| description: str | |
| type: str | |
| class Properties600(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| observedGeneration: ObservedGeneration | |
| reason: Reason16 | |
| status: Status66 | |
| type: Type46 | |
| class IoK8sApimachineryPkgApisMetaV1Condition(BaseModel): | |
| description: str | |
| properties: Properties600 | |
| required: List[str] | |
| type: str | |
| class DryRun(BaseModel): | |
| description: str | |
| items: Items461 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class GracePeriodSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class OrphanDependents(BaseModel): | |
| description: str | |
| type: str | |
| class Preconditions(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class PropagationPolicy(BaseModel): | |
| description: str | |
| type: str | |
| class Properties601(BaseModel): | |
| apiVersion: ApiVersion | |
| dryRun: DryRun | |
| gracePeriodSeconds: GracePeriodSeconds | |
| kind: Kind | |
| orphanDependents: OrphanDependents | |
| preconditions: Preconditions | |
| propagationPolicy: PropagationPolicy | |
| class IoK8sApimachineryPkgApisMetaV1DeleteOptions(BaseModel): | |
| description: str | |
| properties: Properties601 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Values4(BaseModel): | |
| description: str | |
| items: Items461 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties602(BaseModel): | |
| key: Key | |
| operator: Operator | |
| values: Values4 | |
| class IoK8sApimachineryPkgApisMetaV1FieldSelectorRequirement(BaseModel): | |
| description: str | |
| properties: Properties602 | |
| required: List[str] | |
| type: str | |
| class IoK8sApimachineryPkgApisMetaV1FieldsV1(BaseModel): | |
| description: str | |
| type: str | |
| class Properties603(BaseModel): | |
| groupVersion: GroupVersion | |
| version: Version | |
| class IoK8sApimachineryPkgApisMetaV1GroupVersionForDiscovery(BaseModel): | |
| description: str | |
| properties: Properties603 | |
| required: List[str] | |
| type: str | |
| class Items464(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class MatchExpressions2(BaseModel): | |
| description: str | |
| items: Items464 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class AdditionalProperties49(BaseModel): | |
| type: str | |
| class MatchLabels(BaseModel): | |
| additionalProperties: AdditionalProperties49 | |
| description: str | |
| type: str | |
| class Properties604(BaseModel): | |
| matchExpressions: MatchExpressions2 | |
| matchLabels: MatchLabels | |
| class IoK8sApimachineryPkgApisMetaV1LabelSelector(BaseModel): | |
| description: str | |
| properties: Properties604 | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class Items465(BaseModel): | |
| type: str | |
| class Values5(BaseModel): | |
| description: str | |
| items: Items465 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties605(BaseModel): | |
| key: Key | |
| operator: Operator | |
| values: Values5 | |
| class IoK8sApimachineryPkgApisMetaV1LabelSelectorRequirement(BaseModel): | |
| description: str | |
| properties: Properties605 | |
| required: List[str] | |
| type: str | |
| class Continue(BaseModel): | |
| description: str | |
| type: str | |
| class RemainingItemCount(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class SelfLink(BaseModel): | |
| description: str | |
| type: str | |
| class Properties606(BaseModel): | |
| continue_: Continue = Field(..., alias='continue') | |
| remainingItemCount: RemainingItemCount | |
| resourceVersion: ResourceVersion | |
| selfLink: SelfLink | |
| class IoK8sApimachineryPkgApisMetaV1ListMeta(BaseModel): | |
| description: str | |
| properties: Properties606 | |
| type: str | |
| class FieldsType(BaseModel): | |
| description: str | |
| type: str | |
| class FieldsV1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Manager(BaseModel): | |
| description: str | |
| type: str | |
| class Operation(BaseModel): | |
| description: str | |
| type: str | |
| class Properties607(BaseModel): | |
| apiVersion: ApiVersion | |
| fieldsType: FieldsType | |
| fieldsV1: FieldsV1 | |
| manager: Manager | |
| operation: Operation | |
| subresource: Subresource | |
| time: Time | |
| class IoK8sApimachineryPkgApisMetaV1ManagedFieldsEntry(BaseModel): | |
| description: str | |
| properties: Properties607 | |
| type: str | |
| class IoK8sApimachineryPkgApisMetaV1MicroTime(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Annotations(BaseModel): | |
| additionalProperties: AdditionalProperties49 | |
| description: str | |
| type: str | |
| class CreationTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class DeletionGracePeriodSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class DeletionTimestamp(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Finalizers1(BaseModel): | |
| description: str | |
| items: Items465 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class GenerateName(BaseModel): | |
| description: str | |
| type: str | |
| class Labels(BaseModel): | |
| additionalProperties: AdditionalProperties49 | |
| description: str | |
| type: str | |
| class Items467(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class ManagedFields(BaseModel): | |
| description: str | |
| items: Items467 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class OwnerReferences(BaseModel): | |
| description: str | |
| items: Items467 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties608(BaseModel): | |
| annotations: Annotations | |
| creationTimestamp: CreationTimestamp | |
| deletionGracePeriodSeconds: DeletionGracePeriodSeconds | |
| deletionTimestamp: DeletionTimestamp | |
| finalizers: Finalizers1 | |
| generateName: GenerateName | |
| generation: Generation | |
| labels: Labels | |
| managedFields: ManagedFields | |
| name: Name | |
| namespace: Namespace | |
| ownerReferences: OwnerReferences | |
| resourceVersion: ResourceVersion | |
| selfLink: SelfLink | |
| uid: Uid6 | |
| class IoK8sApimachineryPkgApisMetaV1ObjectMeta(BaseModel): | |
| description: str | |
| properties: Properties608 | |
| type: str | |
| class BlockOwnerDeletion(BaseModel): | |
| description: str | |
| type: str | |
| class Properties609(BaseModel): | |
| apiVersion: ApiVersion | |
| blockOwnerDeletion: BlockOwnerDeletion | |
| controller: Controller | |
| kind: Kind | |
| name: Name | |
| uid: Uid6 | |
| class IoK8sApimachineryPkgApisMetaV1OwnerReference(BaseModel): | |
| description: str | |
| properties: Properties609 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_map_type: str = Field(..., alias='x-kubernetes-map-type') | |
| class IoK8sApimachineryPkgApisMetaV1Patch(BaseModel): | |
| description: str | |
| type: str | |
| class Properties610(BaseModel): | |
| resourceVersion: ResourceVersion | |
| uid: Uid6 | |
| class IoK8sApimachineryPkgApisMetaV1Preconditions(BaseModel): | |
| description: str | |
| properties: Properties610 | |
| type: str | |
| class ClientCIDR(BaseModel): | |
| description: str | |
| type: str | |
| class ServerAddress(BaseModel): | |
| description: str | |
| type: str | |
| class Properties611(BaseModel): | |
| clientCIDR: ClientCIDR | |
| serverAddress: ServerAddress | |
| class IoK8sApimachineryPkgApisMetaV1ServerAddressByClientCIDR(BaseModel): | |
| description: str | |
| properties: Properties611 | |
| required: List[str] | |
| type: str | |
| class Code(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Details(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class Properties612(BaseModel): | |
| apiVersion: ApiVersion | |
| code: Code | |
| details: Details | |
| kind: Kind | |
| message: Message16 | |
| metadata: Metadata49 | |
| reason: Reason16 | |
| status: Status66 | |
| class IoK8sApimachineryPkgApisMetaV1Status(BaseModel): | |
| description: str | |
| properties: Properties612 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class FieldModel(BaseModel): | |
| description: str | |
| type: str | |
| class Properties613(BaseModel): | |
| field: FieldModel | |
| message: Message16 | |
| reason: Reason16 | |
| class IoK8sApimachineryPkgApisMetaV1StatusCause(BaseModel): | |
| description: str | |
| properties: Properties613 | |
| type: str | |
| class Causes(BaseModel): | |
| description: str | |
| items: Items467 | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class RetryAfterSeconds(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties614(BaseModel): | |
| causes: Causes | |
| group: Group4 | |
| kind: Kind | |
| name: Name | |
| retryAfterSeconds: RetryAfterSeconds | |
| uid: Uid6 | |
| class IoK8sApimachineryPkgApisMetaV1StatusDetails(BaseModel): | |
| description: str | |
| properties: Properties614 | |
| type: str | |
| class IoK8sApimachineryPkgApisMetaV1Time(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Type47(BaseModel): | |
| type: str | |
| class Properties615(BaseModel): | |
| object: Object | |
| type: Type47 | |
| class IoK8sApimachineryPkgApisMetaV1WatchEvent(BaseModel): | |
| description: str | |
| properties: Properties615 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class IoK8sApimachineryPkgRuntimeRawExtension(BaseModel): | |
| description: str | |
| type: str | |
| class IoK8sApimachineryPkgUtilIntstrIntOrString(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class BuildDate(BaseModel): | |
| type: str | |
| class Compiler(BaseModel): | |
| type: str | |
| class GitCommit(BaseModel): | |
| type: str | |
| class GitTreeState(BaseModel): | |
| type: str | |
| class GitVersion(BaseModel): | |
| type: str | |
| class GoVersion(BaseModel): | |
| type: str | |
| class Major(BaseModel): | |
| type: str | |
| class Minor(BaseModel): | |
| type: str | |
| class Platform(BaseModel): | |
| type: str | |
| class Properties616(BaseModel): | |
| buildDate: BuildDate | |
| compiler: Compiler | |
| gitCommit: GitCommit | |
| gitTreeState: GitTreeState | |
| gitVersion: GitVersion | |
| goVersion: GoVersion | |
| major: Major | |
| minor: Minor | |
| platform: Platform | |
| class IoK8sApimachineryPkgVersionInfo(BaseModel): | |
| description: str | |
| properties: Properties616 | |
| required: List[str] | |
| type: str | |
| class Status68(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| description: str | |
| class Properties617(BaseModel): | |
| apiVersion: ApiVersion | |
| kind: Kind | |
| metadata: Metadata49 | |
| spec: Spec | |
| status: Status68 | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1APIService(BaseModel): | |
| description: str | |
| properties: Properties617 | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class Status69(BaseModel): | |
| description: str | |
| type: str | |
| class Type48(BaseModel): | |
| description: str | |
| type: str | |
| class Properties618(BaseModel): | |
| lastTransitionTime: LastTransitionTime9 | |
| message: Message16 | |
| reason: Reason16 | |
| status: Status69 | |
| type: Type48 | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition(BaseModel): | |
| description: str | |
| properties: Properties618 | |
| required: List[str] | |
| type: str | |
| class Items470(BaseModel): | |
| description: str | |
| items: Items467 | |
| type: str | |
| class Properties619(BaseModel): | |
| apiVersion: ApiVersion | |
| items: Items470 | |
| kind: Kind | |
| metadata: Metadata49 | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceList(BaseModel): | |
| description: str | |
| properties: Properties619 | |
| required: List[str] | |
| type: str | |
| x_kubernetes_group_version_kind: List[XKubernetesGroupVersionKindItem] = Field( | |
| ..., alias='x-kubernetes-group-version-kind' | |
| ) | |
| class CaBundle2(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| class GroupPriorityMinimum(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class InsecureSkipTLSVerify(BaseModel): | |
| description: str | |
| type: str | |
| class VersionPriority(BaseModel): | |
| description: str | |
| format: str | |
| type: str | |
| class Properties620(BaseModel): | |
| caBundle: CaBundle2 | |
| group: Group4 | |
| groupPriorityMinimum: GroupPriorityMinimum | |
| insecureSkipTLSVerify: InsecureSkipTLSVerify | |
| service: Service2 | |
| version: Version | |
| versionPriority: VersionPriority | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceSpec(BaseModel): | |
| description: str | |
| properties: Properties620 | |
| required: List[str] | |
| type: str | |
| class Items472(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Conditions27(BaseModel): | |
| description: str | |
| items: Items472 | |
| type: str | |
| x_kubernetes_list_map_keys: List[str] = Field( | |
| ..., alias='x-kubernetes-list-map-keys' | |
| ) | |
| x_kubernetes_list_type: str = Field(..., alias='x-kubernetes-list-type') | |
| x_kubernetes_patch_merge_key: str = Field(..., alias='x-kubernetes-patch-merge-key') | |
| x_kubernetes_patch_strategy: str = Field(..., alias='x-kubernetes-patch-strategy') | |
| class Properties621(BaseModel): | |
| conditions: Conditions27 | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceStatus(BaseModel): | |
| description: str | |
| properties: Properties621 | |
| type: str | |
| class Properties622(BaseModel): | |
| name: Name | |
| namespace: Namespace | |
| port: Port12 | |
| class IoK8sKubeAggregatorPkgApisApiregistrationV1ServiceReference(BaseModel): | |
| description: str | |
| properties: Properties622 | |
| type: str | |
| class Definitions(BaseModel): | |
| io_k8s_api_admissionregistration_v1_AuditAnnotation: ( | |
| IoK8sApiAdmissionregistrationV1AuditAnnotation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.AuditAnnotation') | |
| io_k8s_api_admissionregistration_v1_ExpressionWarning: ( | |
| IoK8sApiAdmissionregistrationV1ExpressionWarning | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.ExpressionWarning') | |
| io_k8s_api_admissionregistration_v1_MatchCondition: ( | |
| IoK8sApiAdmissionregistrationV1MatchCondition | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.MatchCondition') | |
| io_k8s_api_admissionregistration_v1_MatchResources: ( | |
| IoK8sApiAdmissionregistrationV1MatchResources | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.MatchResources') | |
| io_k8s_api_admissionregistration_v1_MutatingWebhook: ( | |
| IoK8sApiAdmissionregistrationV1MutatingWebhook | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.MutatingWebhook') | |
| io_k8s_api_admissionregistration_v1_MutatingWebhookConfiguration: ( | |
| IoK8sApiAdmissionregistrationV1MutatingWebhookConfiguration | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.MutatingWebhookConfiguration' | |
| ) | |
| io_k8s_api_admissionregistration_v1_MutatingWebhookConfigurationList: ( | |
| IoK8sApiAdmissionregistrationV1MutatingWebhookConfigurationList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1.MutatingWebhookConfigurationList', | |
| ) | |
| io_k8s_api_admissionregistration_v1_NamedRuleWithOperations: ( | |
| IoK8sApiAdmissionregistrationV1NamedRuleWithOperations | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.NamedRuleWithOperations') | |
| io_k8s_api_admissionregistration_v1_ParamKind: ( | |
| IoK8sApiAdmissionregistrationV1ParamKind | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.ParamKind') | |
| io_k8s_api_admissionregistration_v1_ParamRef: ( | |
| IoK8sApiAdmissionregistrationV1ParamRef | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.ParamRef') | |
| io_k8s_api_admissionregistration_v1_RuleWithOperations: ( | |
| IoK8sApiAdmissionregistrationV1RuleWithOperations | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.RuleWithOperations') | |
| io_k8s_api_admissionregistration_v1_ServiceReference: ( | |
| IoK8sApiAdmissionregistrationV1ServiceReference | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.ServiceReference') | |
| io_k8s_api_admissionregistration_v1_TypeChecking: ( | |
| IoK8sApiAdmissionregistrationV1TypeChecking | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.TypeChecking') | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicy: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicy | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicy' | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBinding: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBinding | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicyBinding', | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingList: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBindingList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicyBindingList', | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyBindingSpec: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyBindingSpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicyBindingSpec', | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyList: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyList | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicyList' | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicySpec: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicySpec | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicySpec' | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingAdmissionPolicyStatus: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingAdmissionPolicyStatus | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.ValidatingAdmissionPolicyStatus' | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingWebhook: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingWebhook | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.ValidatingWebhook') | |
| io_k8s_api_admissionregistration_v1_ValidatingWebhookConfiguration: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingWebhookConfiguration | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1.ValidatingWebhookConfiguration' | |
| ) | |
| io_k8s_api_admissionregistration_v1_ValidatingWebhookConfigurationList: ( | |
| IoK8sApiAdmissionregistrationV1ValidatingWebhookConfigurationList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1.ValidatingWebhookConfigurationList', | |
| ) | |
| io_k8s_api_admissionregistration_v1_Validation: ( | |
| IoK8sApiAdmissionregistrationV1Validation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.Validation') | |
| io_k8s_api_admissionregistration_v1_Variable: ( | |
| IoK8sApiAdmissionregistrationV1Variable | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.Variable') | |
| io_k8s_api_admissionregistration_v1_WebhookClientConfig: ( | |
| IoK8sApiAdmissionregistrationV1WebhookClientConfig | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1.WebhookClientConfig') | |
| io_k8s_api_admissionregistration_v1alpha1_AuditAnnotation: ( | |
| IoK8sApiAdmissionregistrationV1alpha1AuditAnnotation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.AuditAnnotation') | |
| io_k8s_api_admissionregistration_v1alpha1_ExpressionWarning: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ExpressionWarning | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.ExpressionWarning') | |
| io_k8s_api_admissionregistration_v1alpha1_MatchCondition: ( | |
| IoK8sApiAdmissionregistrationV1alpha1MatchCondition | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.MatchCondition') | |
| io_k8s_api_admissionregistration_v1alpha1_MatchResources: ( | |
| IoK8sApiAdmissionregistrationV1alpha1MatchResources | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.MatchResources') | |
| io_k8s_api_admissionregistration_v1alpha1_NamedRuleWithOperations: ( | |
| IoK8sApiAdmissionregistrationV1alpha1NamedRuleWithOperations | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1alpha1.NamedRuleWithOperations' | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ParamKind: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ParamKind | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.ParamKind') | |
| io_k8s_api_admissionregistration_v1alpha1_ParamRef: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ParamRef | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.ParamRef') | |
| io_k8s_api_admissionregistration_v1alpha1_TypeChecking: ( | |
| IoK8sApiAdmissionregistrationV1alpha1TypeChecking | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.TypeChecking') | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicy: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicy | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicy' | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBinding: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBinding | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBinding', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingList: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingList', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyBindingSpec: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyBindingSpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyBindingSpec', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyList: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyList', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicySpec: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicySpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicySpec', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_ValidatingAdmissionPolicyStatus: ( | |
| IoK8sApiAdmissionregistrationV1alpha1ValidatingAdmissionPolicyStatus | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1alpha1.ValidatingAdmissionPolicyStatus', | |
| ) | |
| io_k8s_api_admissionregistration_v1alpha1_Validation: ( | |
| IoK8sApiAdmissionregistrationV1alpha1Validation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.Validation') | |
| io_k8s_api_admissionregistration_v1alpha1_Variable: ( | |
| IoK8sApiAdmissionregistrationV1alpha1Variable | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1alpha1.Variable') | |
| io_k8s_api_admissionregistration_v1beta1_AuditAnnotation: ( | |
| IoK8sApiAdmissionregistrationV1beta1AuditAnnotation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.AuditAnnotation') | |
| io_k8s_api_admissionregistration_v1beta1_ExpressionWarning: ( | |
| IoK8sApiAdmissionregistrationV1beta1ExpressionWarning | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.ExpressionWarning') | |
| io_k8s_api_admissionregistration_v1beta1_MatchCondition: ( | |
| IoK8sApiAdmissionregistrationV1beta1MatchCondition | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.MatchCondition') | |
| io_k8s_api_admissionregistration_v1beta1_MatchResources: ( | |
| IoK8sApiAdmissionregistrationV1beta1MatchResources | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.MatchResources') | |
| io_k8s_api_admissionregistration_v1beta1_NamedRuleWithOperations: ( | |
| IoK8sApiAdmissionregistrationV1beta1NamedRuleWithOperations | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1beta1.NamedRuleWithOperations' | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ParamKind: ( | |
| IoK8sApiAdmissionregistrationV1beta1ParamKind | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.ParamKind') | |
| io_k8s_api_admissionregistration_v1beta1_ParamRef: ( | |
| IoK8sApiAdmissionregistrationV1beta1ParamRef | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.ParamRef') | |
| io_k8s_api_admissionregistration_v1beta1_TypeChecking: ( | |
| IoK8sApiAdmissionregistrationV1beta1TypeChecking | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.TypeChecking') | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicy: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicy | |
| ) = Field( | |
| ..., alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicy' | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBinding: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBinding | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBinding', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingList: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingList', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyBindingSpec: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyBindingSpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyBindingSpec', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyList: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyList', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicySpec: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicySpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicySpec', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_ValidatingAdmissionPolicyStatus: ( | |
| IoK8sApiAdmissionregistrationV1beta1ValidatingAdmissionPolicyStatus | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.api.admissionregistration.v1beta1.ValidatingAdmissionPolicyStatus', | |
| ) | |
| io_k8s_api_admissionregistration_v1beta1_Validation: ( | |
| IoK8sApiAdmissionregistrationV1beta1Validation | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.Validation') | |
| io_k8s_api_admissionregistration_v1beta1_Variable: ( | |
| IoK8sApiAdmissionregistrationV1beta1Variable | |
| ) = Field(..., alias='io.k8s.api.admissionregistration.v1beta1.Variable') | |
| io_k8s_api_apiserverinternal_v1alpha1_ServerStorageVersion: ( | |
| IoK8sApiApiserverinternalV1alpha1ServerStorageVersion | |
| ) = Field(..., alias='io.k8s.api.apiserverinternal.v1alpha1.ServerStorageVersion') | |
| io_k8s_api_apiserverinternal_v1alpha1_StorageVersion: ( | |
| IoK8sApiApiserverinternalV1alpha1StorageVersion | |
| ) = Field(..., alias='io.k8s.api.apiserverinternal.v1alpha1.StorageVersion') | |
| io_k8s_api_apiserverinternal_v1alpha1_StorageVersionCondition: ( | |
| IoK8sApiApiserverinternalV1alpha1StorageVersionCondition | |
| ) = Field( | |
| ..., alias='io.k8s.api.apiserverinternal.v1alpha1.StorageVersionCondition' | |
| ) | |
| io_k8s_api_apiserverinternal_v1alpha1_StorageVersionList: ( | |
| IoK8sApiApiserverinternalV1alpha1StorageVersionList | |
| ) = Field(..., alias='io.k8s.api.apiserverinternal.v1alpha1.StorageVersionList') | |
| io_k8s_api_apiserverinternal_v1alpha1_StorageVersionSpec: ( | |
| IoK8sApiApiserverinternalV1alpha1StorageVersionSpec | |
| ) = Field(..., alias='io.k8s.api.apiserverinternal.v1alpha1.StorageVersionSpec') | |
| io_k8s_api_apiserverinternal_v1alpha1_StorageVersionStatus: ( | |
| IoK8sApiApiserverinternalV1alpha1StorageVersionStatus | |
| ) = Field(..., alias='io.k8s.api.apiserverinternal.v1alpha1.StorageVersionStatus') | |
| io_k8s_api_apps_v1_ControllerRevision: IoK8sApiAppsV1ControllerRevision = Field( | |
| ..., alias='io.k8s.api.apps.v1.ControllerRevision' | |
| ) | |
| io_k8s_api_apps_v1_ControllerRevisionList: IoK8sApiAppsV1ControllerRevisionList = ( | |
| Field(..., alias='io.k8s.api.apps.v1.ControllerRevisionList') | |
| ) | |
| io_k8s_api_apps_v1_DaemonSet: IoK8sApiAppsV1DaemonSet = Field( | |
| ..., alias='io.k8s.api.apps.v1.DaemonSet' | |
| ) | |
| io_k8s_api_apps_v1_DaemonSetCondition: IoK8sApiAppsV1DaemonSetCondition = Field( | |
| ..., alias='io.k8s.api.apps.v1.DaemonSetCondition' | |
| ) | |
| io_k8s_api_apps_v1_DaemonSetList: IoK8sApiAppsV1DaemonSetList = Field( | |
| ..., alias='io.k8s.api.apps.v1.DaemonSetList' | |
| ) | |
| io_k8s_api_apps_v1_DaemonSetSpec: IoK8sApiAppsV1DaemonSetSpec = Field( | |
| ..., alias='io.k8s.api.apps.v1.DaemonSetSpec' | |
| ) | |
| io_k8s_api_apps_v1_DaemonSetStatus: IoK8sApiAppsV1DaemonSetStatus = Field( | |
| ..., alias='io.k8s.api.apps.v1.DaemonSetStatus' | |
| ) | |
| io_k8s_api_apps_v1_DaemonSetUpdateStrategy: ( | |
| IoK8sApiAppsV1DaemonSetUpdateStrategy | |
| ) = Field(..., alias='io.k8s.api.apps.v1.DaemonSetUpdateStrategy') | |
| io_k8s_api_apps_v1_Deployment: IoK8sApiAppsV1Deployment = Field( | |
| ..., alias='io.k8s.api.apps.v1.Deployment' | |
| ) | |
| io_k8s_api_apps_v1_DeploymentCondition: IoK8sApiAppsV1DeploymentCondition = Field( | |
| ..., alias='io.k8s.api.apps.v1.DeploymentCondition' | |
| ) | |
| io_k8s_api_apps_v1_DeploymentList: IoK8sApiAppsV1DeploymentList = Field( | |
| ..., alias='io.k8s.api.apps.v1.DeploymentList' | |
| ) | |
| io_k8s_api_apps_v1_DeploymentSpec: IoK8sApiAppsV1DeploymentSpec = Field( | |
| ..., alias='io.k8s.api.apps.v1.DeploymentSpec' | |
| ) | |
| io_k8s_api_apps_v1_DeploymentStatus: IoK8sApiAppsV1DeploymentStatus = Field( | |
| ..., alias='io.k8s.api.apps.v1.DeploymentStatus' | |
| ) | |
| io_k8s_api_apps_v1_DeploymentStrategy: IoK8sApiAppsV1DeploymentStrategy = Field( | |
| ..., alias='io.k8s.api.apps.v1.DeploymentStrategy' | |
| ) | |
| io_k8s_api_apps_v1_ReplicaSet: IoK8sApiAppsV1ReplicaSet = Field( | |
| ..., alias='io.k8s.api.apps.v1.ReplicaSet' | |
| ) | |
| io_k8s_api_apps_v1_ReplicaSetCondition: IoK8sApiAppsV1ReplicaSetCondition = Field( | |
| ..., alias='io.k8s.api.apps.v1.ReplicaSetCondition' | |
| ) | |
| io_k8s_api_apps_v1_ReplicaSetList: IoK8sApiAppsV1ReplicaSetList = Field( | |
| ..., alias='io.k8s.api.apps.v1.ReplicaSetList' | |
| ) | |
| io_k8s_api_apps_v1_ReplicaSetSpec: IoK8sApiAppsV1ReplicaSetSpec = Field( | |
| ..., alias='io.k8s.api.apps.v1.ReplicaSetSpec' | |
| ) | |
| io_k8s_api_apps_v1_ReplicaSetStatus: IoK8sApiAppsV1ReplicaSetStatus = Field( | |
| ..., alias='io.k8s.api.apps.v1.ReplicaSetStatus' | |
| ) | |
| io_k8s_api_apps_v1_RollingUpdateDaemonSet: IoK8sApiAppsV1RollingUpdateDaemonSet = ( | |
| Field(..., alias='io.k8s.api.apps.v1.RollingUpdateDaemonSet') | |
| ) | |
| io_k8s_api_apps_v1_RollingUpdateDeployment: ( | |
| IoK8sApiAppsV1RollingUpdateDeployment | |
| ) = Field(..., alias='io.k8s.api.apps.v1.RollingUpdateDeployment') | |
| io_k8s_api_apps_v1_RollingUpdateStatefulSetStrategy: ( | |
| IoK8sApiAppsV1RollingUpdateStatefulSetStrategy | |
| ) = Field(..., alias='io.k8s.api.apps.v1.RollingUpdateStatefulSetStrategy') | |
| io_k8s_api_apps_v1_StatefulSet: IoK8sApiAppsV1StatefulSet = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSet' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetCondition: IoK8sApiAppsV1StatefulSetCondition = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetCondition' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetList: IoK8sApiAppsV1StatefulSetList = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetList' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetOrdinals: IoK8sApiAppsV1StatefulSetOrdinals = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetOrdinals' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetPersistentVolumeClaimRetentionPolicy: ( | |
| IoK8sApiAppsV1StatefulSetPersistentVolumeClaimRetentionPolicy | |
| ) = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetPersistentVolumeClaimRetentionPolicy' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetSpec: IoK8sApiAppsV1StatefulSetSpec = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetSpec' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetStatus: IoK8sApiAppsV1StatefulSetStatus = Field( | |
| ..., alias='io.k8s.api.apps.v1.StatefulSetStatus' | |
| ) | |
| io_k8s_api_apps_v1_StatefulSetUpdateStrategy: ( | |
| IoK8sApiAppsV1StatefulSetUpdateStrategy | |
| ) = Field(..., alias='io.k8s.api.apps.v1.StatefulSetUpdateStrategy') | |
| io_k8s_api_authentication_v1_BoundObjectReference: ( | |
| IoK8sApiAuthenticationV1BoundObjectReference | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.BoundObjectReference') | |
| io_k8s_api_authentication_v1_SelfSubjectReview: ( | |
| IoK8sApiAuthenticationV1SelfSubjectReview | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.SelfSubjectReview') | |
| io_k8s_api_authentication_v1_SelfSubjectReviewStatus: ( | |
| IoK8sApiAuthenticationV1SelfSubjectReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.SelfSubjectReviewStatus') | |
| io_k8s_api_authentication_v1_TokenRequest: IoK8sApiAuthenticationV1TokenRequest = ( | |
| Field(..., alias='io.k8s.api.authentication.v1.TokenRequest') | |
| ) | |
| io_k8s_api_authentication_v1_TokenRequestSpec: ( | |
| IoK8sApiAuthenticationV1TokenRequestSpec | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.TokenRequestSpec') | |
| io_k8s_api_authentication_v1_TokenRequestStatus: ( | |
| IoK8sApiAuthenticationV1TokenRequestStatus | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.TokenRequestStatus') | |
| io_k8s_api_authentication_v1_TokenReview: IoK8sApiAuthenticationV1TokenReview = ( | |
| Field(..., alias='io.k8s.api.authentication.v1.TokenReview') | |
| ) | |
| io_k8s_api_authentication_v1_TokenReviewSpec: ( | |
| IoK8sApiAuthenticationV1TokenReviewSpec | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.TokenReviewSpec') | |
| io_k8s_api_authentication_v1_TokenReviewStatus: ( | |
| IoK8sApiAuthenticationV1TokenReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authentication.v1.TokenReviewStatus') | |
| io_k8s_api_authentication_v1_UserInfo: IoK8sApiAuthenticationV1UserInfo = Field( | |
| ..., alias='io.k8s.api.authentication.v1.UserInfo' | |
| ) | |
| io_k8s_api_authentication_v1alpha1_SelfSubjectReview: ( | |
| IoK8sApiAuthenticationV1alpha1SelfSubjectReview | |
| ) = Field(..., alias='io.k8s.api.authentication.v1alpha1.SelfSubjectReview') | |
| io_k8s_api_authentication_v1alpha1_SelfSubjectReviewStatus: ( | |
| IoK8sApiAuthenticationV1alpha1SelfSubjectReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authentication.v1alpha1.SelfSubjectReviewStatus') | |
| io_k8s_api_authentication_v1beta1_SelfSubjectReview: ( | |
| IoK8sApiAuthenticationV1beta1SelfSubjectReview | |
| ) = Field(..., alias='io.k8s.api.authentication.v1beta1.SelfSubjectReview') | |
| io_k8s_api_authentication_v1beta1_SelfSubjectReviewStatus: ( | |
| IoK8sApiAuthenticationV1beta1SelfSubjectReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authentication.v1beta1.SelfSubjectReviewStatus') | |
| io_k8s_api_authorization_v1_FieldSelectorAttributes: ( | |
| IoK8sApiAuthorizationV1FieldSelectorAttributes | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.FieldSelectorAttributes') | |
| io_k8s_api_authorization_v1_LabelSelectorAttributes: ( | |
| IoK8sApiAuthorizationV1LabelSelectorAttributes | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.LabelSelectorAttributes') | |
| io_k8s_api_authorization_v1_LocalSubjectAccessReview: ( | |
| IoK8sApiAuthorizationV1LocalSubjectAccessReview | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.LocalSubjectAccessReview') | |
| io_k8s_api_authorization_v1_NonResourceAttributes: ( | |
| IoK8sApiAuthorizationV1NonResourceAttributes | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.NonResourceAttributes') | |
| io_k8s_api_authorization_v1_NonResourceRule: ( | |
| IoK8sApiAuthorizationV1NonResourceRule | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.NonResourceRule') | |
| io_k8s_api_authorization_v1_ResourceAttributes: ( | |
| IoK8sApiAuthorizationV1ResourceAttributes | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.ResourceAttributes') | |
| io_k8s_api_authorization_v1_ResourceRule: IoK8sApiAuthorizationV1ResourceRule = ( | |
| Field(..., alias='io.k8s.api.authorization.v1.ResourceRule') | |
| ) | |
| io_k8s_api_authorization_v1_SelfSubjectAccessReview: ( | |
| IoK8sApiAuthorizationV1SelfSubjectAccessReview | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SelfSubjectAccessReview') | |
| io_k8s_api_authorization_v1_SelfSubjectAccessReviewSpec: ( | |
| IoK8sApiAuthorizationV1SelfSubjectAccessReviewSpec | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SelfSubjectAccessReviewSpec') | |
| io_k8s_api_authorization_v1_SelfSubjectRulesReview: ( | |
| IoK8sApiAuthorizationV1SelfSubjectRulesReview | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SelfSubjectRulesReview') | |
| io_k8s_api_authorization_v1_SelfSubjectRulesReviewSpec: ( | |
| IoK8sApiAuthorizationV1SelfSubjectRulesReviewSpec | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec') | |
| io_k8s_api_authorization_v1_SubjectAccessReview: ( | |
| IoK8sApiAuthorizationV1SubjectAccessReview | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SubjectAccessReview') | |
| io_k8s_api_authorization_v1_SubjectAccessReviewSpec: ( | |
| IoK8sApiAuthorizationV1SubjectAccessReviewSpec | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SubjectAccessReviewSpec') | |
| io_k8s_api_authorization_v1_SubjectAccessReviewStatus: ( | |
| IoK8sApiAuthorizationV1SubjectAccessReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SubjectAccessReviewStatus') | |
| io_k8s_api_authorization_v1_SubjectRulesReviewStatus: ( | |
| IoK8sApiAuthorizationV1SubjectRulesReviewStatus | |
| ) = Field(..., alias='io.k8s.api.authorization.v1.SubjectRulesReviewStatus') | |
| io_k8s_api_autoscaling_v1_CrossVersionObjectReference: ( | |
| IoK8sApiAutoscalingV1CrossVersionObjectReference | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v1.CrossVersionObjectReference') | |
| io_k8s_api_autoscaling_v1_HorizontalPodAutoscaler: ( | |
| IoK8sApiAutoscalingV1HorizontalPodAutoscaler | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v1.HorizontalPodAutoscaler') | |
| io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerList: ( | |
| IoK8sApiAutoscalingV1HorizontalPodAutoscalerList | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerList') | |
| io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerSpec: ( | |
| IoK8sApiAutoscalingV1HorizontalPodAutoscalerSpec | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerSpec') | |
| io_k8s_api_autoscaling_v1_HorizontalPodAutoscalerStatus: ( | |
| IoK8sApiAutoscalingV1HorizontalPodAutoscalerStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v1.HorizontalPodAutoscalerStatus') | |
| io_k8s_api_autoscaling_v1_Scale: IoK8sApiAutoscalingV1Scale = Field( | |
| ..., alias='io.k8s.api.autoscaling.v1.Scale' | |
| ) | |
| io_k8s_api_autoscaling_v1_ScaleSpec: IoK8sApiAutoscalingV1ScaleSpec = Field( | |
| ..., alias='io.k8s.api.autoscaling.v1.ScaleSpec' | |
| ) | |
| io_k8s_api_autoscaling_v1_ScaleStatus: IoK8sApiAutoscalingV1ScaleStatus = Field( | |
| ..., alias='io.k8s.api.autoscaling.v1.ScaleStatus' | |
| ) | |
| io_k8s_api_autoscaling_v2_ContainerResourceMetricSource: ( | |
| IoK8sApiAutoscalingV2ContainerResourceMetricSource | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ContainerResourceMetricSource') | |
| io_k8s_api_autoscaling_v2_ContainerResourceMetricStatus: ( | |
| IoK8sApiAutoscalingV2ContainerResourceMetricStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ContainerResourceMetricStatus') | |
| io_k8s_api_autoscaling_v2_CrossVersionObjectReference: ( | |
| IoK8sApiAutoscalingV2CrossVersionObjectReference | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.CrossVersionObjectReference') | |
| io_k8s_api_autoscaling_v2_ExternalMetricSource: ( | |
| IoK8sApiAutoscalingV2ExternalMetricSource | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ExternalMetricSource') | |
| io_k8s_api_autoscaling_v2_ExternalMetricStatus: ( | |
| IoK8sApiAutoscalingV2ExternalMetricStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ExternalMetricStatus') | |
| io_k8s_api_autoscaling_v2_HPAScalingPolicy: ( | |
| IoK8sApiAutoscalingV2HPAScalingPolicy | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HPAScalingPolicy') | |
| io_k8s_api_autoscaling_v2_HPAScalingRules: IoK8sApiAutoscalingV2HPAScalingRules = ( | |
| Field(..., alias='io.k8s.api.autoscaling.v2.HPAScalingRules') | |
| ) | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscaler: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscaler | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscaler') | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerBehavior: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscalerBehavior | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerBehavior') | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerCondition: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscalerCondition | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerCondition') | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerList: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscalerList | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerList') | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerSpec: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscalerSpec | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerSpec') | |
| io_k8s_api_autoscaling_v2_HorizontalPodAutoscalerStatus: ( | |
| IoK8sApiAutoscalingV2HorizontalPodAutoscalerStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.HorizontalPodAutoscalerStatus') | |
| io_k8s_api_autoscaling_v2_MetricIdentifier: ( | |
| IoK8sApiAutoscalingV2MetricIdentifier | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.MetricIdentifier') | |
| io_k8s_api_autoscaling_v2_MetricSpec: IoK8sApiAutoscalingV2MetricSpec = Field( | |
| ..., alias='io.k8s.api.autoscaling.v2.MetricSpec' | |
| ) | |
| io_k8s_api_autoscaling_v2_MetricStatus: IoK8sApiAutoscalingV2MetricStatus = Field( | |
| ..., alias='io.k8s.api.autoscaling.v2.MetricStatus' | |
| ) | |
| io_k8s_api_autoscaling_v2_MetricTarget: IoK8sApiAutoscalingV2MetricTarget = Field( | |
| ..., alias='io.k8s.api.autoscaling.v2.MetricTarget' | |
| ) | |
| io_k8s_api_autoscaling_v2_MetricValueStatus: ( | |
| IoK8sApiAutoscalingV2MetricValueStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.MetricValueStatus') | |
| io_k8s_api_autoscaling_v2_ObjectMetricSource: ( | |
| IoK8sApiAutoscalingV2ObjectMetricSource | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ObjectMetricSource') | |
| io_k8s_api_autoscaling_v2_ObjectMetricStatus: ( | |
| IoK8sApiAutoscalingV2ObjectMetricStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ObjectMetricStatus') | |
| io_k8s_api_autoscaling_v2_PodsMetricSource: ( | |
| IoK8sApiAutoscalingV2PodsMetricSource | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.PodsMetricSource') | |
| io_k8s_api_autoscaling_v2_PodsMetricStatus: ( | |
| IoK8sApiAutoscalingV2PodsMetricStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.PodsMetricStatus') | |
| io_k8s_api_autoscaling_v2_ResourceMetricSource: ( | |
| IoK8sApiAutoscalingV2ResourceMetricSource | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ResourceMetricSource') | |
| io_k8s_api_autoscaling_v2_ResourceMetricStatus: ( | |
| IoK8sApiAutoscalingV2ResourceMetricStatus | |
| ) = Field(..., alias='io.k8s.api.autoscaling.v2.ResourceMetricStatus') | |
| io_k8s_api_batch_v1_CronJob: IoK8sApiBatchV1CronJob = Field( | |
| ..., alias='io.k8s.api.batch.v1.CronJob' | |
| ) | |
| io_k8s_api_batch_v1_CronJobList: IoK8sApiBatchV1CronJobList = Field( | |
| ..., alias='io.k8s.api.batch.v1.CronJobList' | |
| ) | |
| io_k8s_api_batch_v1_CronJobSpec: IoK8sApiBatchV1CronJobSpec = Field( | |
| ..., alias='io.k8s.api.batch.v1.CronJobSpec' | |
| ) | |
| io_k8s_api_batch_v1_CronJobStatus: IoK8sApiBatchV1CronJobStatus = Field( | |
| ..., alias='io.k8s.api.batch.v1.CronJobStatus' | |
| ) | |
| io_k8s_api_batch_v1_Job: IoK8sApiBatchV1Job = Field( | |
| ..., alias='io.k8s.api.batch.v1.Job' | |
| ) | |
| io_k8s_api_batch_v1_JobCondition: IoK8sApiBatchV1JobCondition = Field( | |
| ..., alias='io.k8s.api.batch.v1.JobCondition' | |
| ) | |
| io_k8s_api_batch_v1_JobList: IoK8sApiBatchV1JobList = Field( | |
| ..., alias='io.k8s.api.batch.v1.JobList' | |
| ) | |
| io_k8s_api_batch_v1_JobSpec: IoK8sApiBatchV1JobSpec = Field( | |
| ..., alias='io.k8s.api.batch.v1.JobSpec' | |
| ) | |
| io_k8s_api_batch_v1_JobStatus: IoK8sApiBatchV1JobStatus = Field( | |
| ..., alias='io.k8s.api.batch.v1.JobStatus' | |
| ) | |
| io_k8s_api_batch_v1_JobTemplateSpec: IoK8sApiBatchV1JobTemplateSpec = Field( | |
| ..., alias='io.k8s.api.batch.v1.JobTemplateSpec' | |
| ) | |
| io_k8s_api_batch_v1_PodFailurePolicy: IoK8sApiBatchV1PodFailurePolicy = Field( | |
| ..., alias='io.k8s.api.batch.v1.PodFailurePolicy' | |
| ) | |
| io_k8s_api_batch_v1_PodFailurePolicyOnExitCodesRequirement: ( | |
| IoK8sApiBatchV1PodFailurePolicyOnExitCodesRequirement | |
| ) = Field(..., alias='io.k8s.api.batch.v1.PodFailurePolicyOnExitCodesRequirement') | |
| io_k8s_api_batch_v1_PodFailurePolicyOnPodConditionsPattern: ( | |
| IoK8sApiBatchV1PodFailurePolicyOnPodConditionsPattern | |
| ) = Field(..., alias='io.k8s.api.batch.v1.PodFailurePolicyOnPodConditionsPattern') | |
| io_k8s_api_batch_v1_PodFailurePolicyRule: IoK8sApiBatchV1PodFailurePolicyRule = ( | |
| Field(..., alias='io.k8s.api.batch.v1.PodFailurePolicyRule') | |
| ) | |
| io_k8s_api_batch_v1_SuccessPolicy: IoK8sApiBatchV1SuccessPolicy = Field( | |
| ..., alias='io.k8s.api.batch.v1.SuccessPolicy' | |
| ) | |
| io_k8s_api_batch_v1_SuccessPolicyRule: IoK8sApiBatchV1SuccessPolicyRule = Field( | |
| ..., alias='io.k8s.api.batch.v1.SuccessPolicyRule' | |
| ) | |
| io_k8s_api_batch_v1_UncountedTerminatedPods: ( | |
| IoK8sApiBatchV1UncountedTerminatedPods | |
| ) = Field(..., alias='io.k8s.api.batch.v1.UncountedTerminatedPods') | |
| io_k8s_api_certificates_v1_CertificateSigningRequest: ( | |
| IoK8sApiCertificatesV1CertificateSigningRequest | |
| ) = Field(..., alias='io.k8s.api.certificates.v1.CertificateSigningRequest') | |
| io_k8s_api_certificates_v1_CertificateSigningRequestCondition: ( | |
| IoK8sApiCertificatesV1CertificateSigningRequestCondition | |
| ) = Field( | |
| ..., alias='io.k8s.api.certificates.v1.CertificateSigningRequestCondition' | |
| ) | |
| io_k8s_api_certificates_v1_CertificateSigningRequestList: ( | |
| IoK8sApiCertificatesV1CertificateSigningRequestList | |
| ) = Field(..., alias='io.k8s.api.certificates.v1.CertificateSigningRequestList') | |
| io_k8s_api_certificates_v1_CertificateSigningRequestSpec: ( | |
| IoK8sApiCertificatesV1CertificateSigningRequestSpec | |
| ) = Field(..., alias='io.k8s.api.certificates.v1.CertificateSigningRequestSpec') | |
| io_k8s_api_certificates_v1_CertificateSigningRequestStatus: ( | |
| IoK8sApiCertificatesV1CertificateSigningRequestStatus | |
| ) = Field(..., alias='io.k8s.api.certificates.v1.CertificateSigningRequestStatus') | |
| io_k8s_api_certificates_v1alpha1_ClusterTrustBundle: ( | |
| IoK8sApiCertificatesV1alpha1ClusterTrustBundle | |
| ) = Field(..., alias='io.k8s.api.certificates.v1alpha1.ClusterTrustBundle') | |
| io_k8s_api_certificates_v1alpha1_ClusterTrustBundleList: ( | |
| IoK8sApiCertificatesV1alpha1ClusterTrustBundleList | |
| ) = Field(..., alias='io.k8s.api.certificates.v1alpha1.ClusterTrustBundleList') | |
| io_k8s_api_certificates_v1alpha1_ClusterTrustBundleSpec: ( | |
| IoK8sApiCertificatesV1alpha1ClusterTrustBundleSpec | |
| ) = Field(..., alias='io.k8s.api.certificates.v1alpha1.ClusterTrustBundleSpec') | |
| io_k8s_api_coordination_v1_Lease: IoK8sApiCoordinationV1Lease = Field( | |
| ..., alias='io.k8s.api.coordination.v1.Lease' | |
| ) | |
| io_k8s_api_coordination_v1_LeaseList: IoK8sApiCoordinationV1LeaseList = Field( | |
| ..., alias='io.k8s.api.coordination.v1.LeaseList' | |
| ) | |
| io_k8s_api_coordination_v1_LeaseSpec: IoK8sApiCoordinationV1LeaseSpec = Field( | |
| ..., alias='io.k8s.api.coordination.v1.LeaseSpec' | |
| ) | |
| io_k8s_api_coordination_v1alpha1_LeaseCandidate: ( | |
| IoK8sApiCoordinationV1alpha1LeaseCandidate | |
| ) = Field(..., alias='io.k8s.api.coordination.v1alpha1.LeaseCandidate') | |
| io_k8s_api_coordination_v1alpha1_LeaseCandidateList: ( | |
| IoK8sApiCoordinationV1alpha1LeaseCandidateList | |
| ) = Field(..., alias='io.k8s.api.coordination.v1alpha1.LeaseCandidateList') | |
| io_k8s_api_coordination_v1alpha1_LeaseCandidateSpec: ( | |
| IoK8sApiCoordinationV1alpha1LeaseCandidateSpec | |
| ) = Field(..., alias='io.k8s.api.coordination.v1alpha1.LeaseCandidateSpec') | |
| io_k8s_api_core_v1_AWSElasticBlockStoreVolumeSource: ( | |
| IoK8sApiCoreV1AWSElasticBlockStoreVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.AWSElasticBlockStoreVolumeSource') | |
| io_k8s_api_core_v1_Affinity: IoK8sApiCoreV1Affinity = Field( | |
| ..., alias='io.k8s.api.core.v1.Affinity' | |
| ) | |
| io_k8s_api_core_v1_AppArmorProfile: IoK8sApiCoreV1AppArmorProfile = Field( | |
| ..., alias='io.k8s.api.core.v1.AppArmorProfile' | |
| ) | |
| io_k8s_api_core_v1_AttachedVolume: IoK8sApiCoreV1AttachedVolume = Field( | |
| ..., alias='io.k8s.api.core.v1.AttachedVolume' | |
| ) | |
| io_k8s_api_core_v1_AzureDiskVolumeSource: IoK8sApiCoreV1AzureDiskVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.AzureDiskVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_AzureFilePersistentVolumeSource: ( | |
| IoK8sApiCoreV1AzureFilePersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.AzureFilePersistentVolumeSource') | |
| io_k8s_api_core_v1_AzureFileVolumeSource: IoK8sApiCoreV1AzureFileVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.AzureFileVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_Binding: IoK8sApiCoreV1Binding = Field( | |
| ..., alias='io.k8s.api.core.v1.Binding' | |
| ) | |
| io_k8s_api_core_v1_CSIPersistentVolumeSource: ( | |
| IoK8sApiCoreV1CSIPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.CSIPersistentVolumeSource') | |
| io_k8s_api_core_v1_CSIVolumeSource: IoK8sApiCoreV1CSIVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.CSIVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_Capabilities: IoK8sApiCoreV1Capabilities = Field( | |
| ..., alias='io.k8s.api.core.v1.Capabilities' | |
| ) | |
| io_k8s_api_core_v1_CephFSPersistentVolumeSource: ( | |
| IoK8sApiCoreV1CephFSPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.CephFSPersistentVolumeSource') | |
| io_k8s_api_core_v1_CephFSVolumeSource: IoK8sApiCoreV1CephFSVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.CephFSVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_CinderPersistentVolumeSource: ( | |
| IoK8sApiCoreV1CinderPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.CinderPersistentVolumeSource') | |
| io_k8s_api_core_v1_CinderVolumeSource: IoK8sApiCoreV1CinderVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.CinderVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ClientIPConfig: IoK8sApiCoreV1ClientIPConfig = Field( | |
| ..., alias='io.k8s.api.core.v1.ClientIPConfig' | |
| ) | |
| io_k8s_api_core_v1_ClusterTrustBundleProjection: ( | |
| IoK8sApiCoreV1ClusterTrustBundleProjection | |
| ) = Field(..., alias='io.k8s.api.core.v1.ClusterTrustBundleProjection') | |
| io_k8s_api_core_v1_ComponentCondition: IoK8sApiCoreV1ComponentCondition = Field( | |
| ..., alias='io.k8s.api.core.v1.ComponentCondition' | |
| ) | |
| io_k8s_api_core_v1_ComponentStatus: IoK8sApiCoreV1ComponentStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ComponentStatus' | |
| ) | |
| io_k8s_api_core_v1_ComponentStatusList: IoK8sApiCoreV1ComponentStatusList = Field( | |
| ..., alias='io.k8s.api.core.v1.ComponentStatusList' | |
| ) | |
| io_k8s_api_core_v1_ConfigMap: IoK8sApiCoreV1ConfigMap = Field( | |
| ..., alias='io.k8s.api.core.v1.ConfigMap' | |
| ) | |
| io_k8s_api_core_v1_ConfigMapEnvSource: IoK8sApiCoreV1ConfigMapEnvSource = Field( | |
| ..., alias='io.k8s.api.core.v1.ConfigMapEnvSource' | |
| ) | |
| io_k8s_api_core_v1_ConfigMapKeySelector: IoK8sApiCoreV1ConfigMapKeySelector = Field( | |
| ..., alias='io.k8s.api.core.v1.ConfigMapKeySelector' | |
| ) | |
| io_k8s_api_core_v1_ConfigMapList: IoK8sApiCoreV1ConfigMapList = Field( | |
| ..., alias='io.k8s.api.core.v1.ConfigMapList' | |
| ) | |
| io_k8s_api_core_v1_ConfigMapNodeConfigSource: ( | |
| IoK8sApiCoreV1ConfigMapNodeConfigSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.ConfigMapNodeConfigSource') | |
| io_k8s_api_core_v1_ConfigMapProjection: IoK8sApiCoreV1ConfigMapProjection = Field( | |
| ..., alias='io.k8s.api.core.v1.ConfigMapProjection' | |
| ) | |
| io_k8s_api_core_v1_ConfigMapVolumeSource: IoK8sApiCoreV1ConfigMapVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.ConfigMapVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_Container: IoK8sApiCoreV1Container = Field( | |
| ..., alias='io.k8s.api.core.v1.Container' | |
| ) | |
| io_k8s_api_core_v1_ContainerImage: IoK8sApiCoreV1ContainerImage = Field( | |
| ..., alias='io.k8s.api.core.v1.ContainerImage' | |
| ) | |
| io_k8s_api_core_v1_ContainerPort: IoK8sApiCoreV1ContainerPort = Field( | |
| ..., alias='io.k8s.api.core.v1.ContainerPort' | |
| ) | |
| io_k8s_api_core_v1_ContainerResizePolicy: IoK8sApiCoreV1ContainerResizePolicy = ( | |
| Field(..., alias='io.k8s.api.core.v1.ContainerResizePolicy') | |
| ) | |
| io_k8s_api_core_v1_ContainerState: IoK8sApiCoreV1ContainerState = Field( | |
| ..., alias='io.k8s.api.core.v1.ContainerState' | |
| ) | |
| io_k8s_api_core_v1_ContainerStateRunning: IoK8sApiCoreV1ContainerStateRunning = ( | |
| Field(..., alias='io.k8s.api.core.v1.ContainerStateRunning') | |
| ) | |
| io_k8s_api_core_v1_ContainerStateTerminated: ( | |
| IoK8sApiCoreV1ContainerStateTerminated | |
| ) = Field(..., alias='io.k8s.api.core.v1.ContainerStateTerminated') | |
| io_k8s_api_core_v1_ContainerStateWaiting: IoK8sApiCoreV1ContainerStateWaiting = ( | |
| Field(..., alias='io.k8s.api.core.v1.ContainerStateWaiting') | |
| ) | |
| io_k8s_api_core_v1_ContainerStatus: IoK8sApiCoreV1ContainerStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ContainerStatus' | |
| ) | |
| io_k8s_api_core_v1_ContainerUser: IoK8sApiCoreV1ContainerUser = Field( | |
| ..., alias='io.k8s.api.core.v1.ContainerUser' | |
| ) | |
| io_k8s_api_core_v1_DownwardAPIProjection: IoK8sApiCoreV1DownwardAPIProjection = ( | |
| Field(..., alias='io.k8s.api.core.v1.DownwardAPIProjection') | |
| ) | |
| io_k8s_api_core_v1_DownwardAPIVolumeFile: IoK8sApiCoreV1DownwardAPIVolumeFile = ( | |
| Field(..., alias='io.k8s.api.core.v1.DownwardAPIVolumeFile') | |
| ) | |
| io_k8s_api_core_v1_DownwardAPIVolumeSource: ( | |
| IoK8sApiCoreV1DownwardAPIVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.DownwardAPIVolumeSource') | |
| io_k8s_api_core_v1_EmptyDirVolumeSource: IoK8sApiCoreV1EmptyDirVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.EmptyDirVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_EndpointAddress: IoK8sApiCoreV1EndpointAddress = Field( | |
| ..., alias='io.k8s.api.core.v1.EndpointAddress' | |
| ) | |
| io_k8s_api_core_v1_EndpointPort: IoK8sApiCoreV1EndpointPort = Field( | |
| ..., alias='io.k8s.api.core.v1.EndpointPort' | |
| ) | |
| io_k8s_api_core_v1_EndpointSubset: IoK8sApiCoreV1EndpointSubset = Field( | |
| ..., alias='io.k8s.api.core.v1.EndpointSubset' | |
| ) | |
| io_k8s_api_core_v1_Endpoints: IoK8sApiCoreV1Endpoints = Field( | |
| ..., alias='io.k8s.api.core.v1.Endpoints' | |
| ) | |
| io_k8s_api_core_v1_EndpointsList: IoK8sApiCoreV1EndpointsList = Field( | |
| ..., alias='io.k8s.api.core.v1.EndpointsList' | |
| ) | |
| io_k8s_api_core_v1_EnvFromSource: IoK8sApiCoreV1EnvFromSource = Field( | |
| ..., alias='io.k8s.api.core.v1.EnvFromSource' | |
| ) | |
| io_k8s_api_core_v1_EnvVar: IoK8sApiCoreV1EnvVar = Field( | |
| ..., alias='io.k8s.api.core.v1.EnvVar' | |
| ) | |
| io_k8s_api_core_v1_EnvVarSource: IoK8sApiCoreV1EnvVarSource = Field( | |
| ..., alias='io.k8s.api.core.v1.EnvVarSource' | |
| ) | |
| io_k8s_api_core_v1_EphemeralContainer: IoK8sApiCoreV1EphemeralContainer = Field( | |
| ..., alias='io.k8s.api.core.v1.EphemeralContainer' | |
| ) | |
| io_k8s_api_core_v1_EphemeralVolumeSource: IoK8sApiCoreV1EphemeralVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.EphemeralVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_Event: IoK8sApiCoreV1Event = Field( | |
| ..., alias='io.k8s.api.core.v1.Event' | |
| ) | |
| io_k8s_api_core_v1_EventList: IoK8sApiCoreV1EventList = Field( | |
| ..., alias='io.k8s.api.core.v1.EventList' | |
| ) | |
| io_k8s_api_core_v1_EventSeries: IoK8sApiCoreV1EventSeries = Field( | |
| ..., alias='io.k8s.api.core.v1.EventSeries' | |
| ) | |
| io_k8s_api_core_v1_EventSource: IoK8sApiCoreV1EventSource = Field( | |
| ..., alias='io.k8s.api.core.v1.EventSource' | |
| ) | |
| io_k8s_api_core_v1_ExecAction: IoK8sApiCoreV1ExecAction = Field( | |
| ..., alias='io.k8s.api.core.v1.ExecAction' | |
| ) | |
| io_k8s_api_core_v1_FCVolumeSource: IoK8sApiCoreV1FCVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.FCVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_FlexPersistentVolumeSource: ( | |
| IoK8sApiCoreV1FlexPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.FlexPersistentVolumeSource') | |
| io_k8s_api_core_v1_FlexVolumeSource: IoK8sApiCoreV1FlexVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.FlexVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_FlockerVolumeSource: IoK8sApiCoreV1FlockerVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.FlockerVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_GCEPersistentDiskVolumeSource: ( | |
| IoK8sApiCoreV1GCEPersistentDiskVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.GCEPersistentDiskVolumeSource') | |
| io_k8s_api_core_v1_GRPCAction: IoK8sApiCoreV1GRPCAction = Field( | |
| ..., alias='io.k8s.api.core.v1.GRPCAction' | |
| ) | |
| io_k8s_api_core_v1_GitRepoVolumeSource: IoK8sApiCoreV1GitRepoVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.GitRepoVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_GlusterfsPersistentVolumeSource: ( | |
| IoK8sApiCoreV1GlusterfsPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.GlusterfsPersistentVolumeSource') | |
| io_k8s_api_core_v1_GlusterfsVolumeSource: IoK8sApiCoreV1GlusterfsVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.GlusterfsVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_HTTPGetAction: IoK8sApiCoreV1HTTPGetAction = Field( | |
| ..., alias='io.k8s.api.core.v1.HTTPGetAction' | |
| ) | |
| io_k8s_api_core_v1_HTTPHeader: IoK8sApiCoreV1HTTPHeader = Field( | |
| ..., alias='io.k8s.api.core.v1.HTTPHeader' | |
| ) | |
| io_k8s_api_core_v1_HostAlias: IoK8sApiCoreV1HostAlias = Field( | |
| ..., alias='io.k8s.api.core.v1.HostAlias' | |
| ) | |
| io_k8s_api_core_v1_HostIP: IoK8sApiCoreV1HostIP = Field( | |
| ..., alias='io.k8s.api.core.v1.HostIP' | |
| ) | |
| io_k8s_api_core_v1_HostPathVolumeSource: IoK8sApiCoreV1HostPathVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.HostPathVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ISCSIPersistentVolumeSource: ( | |
| IoK8sApiCoreV1ISCSIPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.ISCSIPersistentVolumeSource') | |
| io_k8s_api_core_v1_ISCSIVolumeSource: IoK8sApiCoreV1ISCSIVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.ISCSIVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ImageVolumeSource: IoK8sApiCoreV1ImageVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.ImageVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_KeyToPath: IoK8sApiCoreV1KeyToPath = Field( | |
| ..., alias='io.k8s.api.core.v1.KeyToPath' | |
| ) | |
| io_k8s_api_core_v1_Lifecycle: IoK8sApiCoreV1Lifecycle = Field( | |
| ..., alias='io.k8s.api.core.v1.Lifecycle' | |
| ) | |
| io_k8s_api_core_v1_LifecycleHandler: IoK8sApiCoreV1LifecycleHandler = Field( | |
| ..., alias='io.k8s.api.core.v1.LifecycleHandler' | |
| ) | |
| io_k8s_api_core_v1_LimitRange: IoK8sApiCoreV1LimitRange = Field( | |
| ..., alias='io.k8s.api.core.v1.LimitRange' | |
| ) | |
| io_k8s_api_core_v1_LimitRangeItem: IoK8sApiCoreV1LimitRangeItem = Field( | |
| ..., alias='io.k8s.api.core.v1.LimitRangeItem' | |
| ) | |
| io_k8s_api_core_v1_LimitRangeList: IoK8sApiCoreV1LimitRangeList = Field( | |
| ..., alias='io.k8s.api.core.v1.LimitRangeList' | |
| ) | |
| io_k8s_api_core_v1_LimitRangeSpec: IoK8sApiCoreV1LimitRangeSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.LimitRangeSpec' | |
| ) | |
| io_k8s_api_core_v1_LinuxContainerUser: IoK8sApiCoreV1LinuxContainerUser = Field( | |
| ..., alias='io.k8s.api.core.v1.LinuxContainerUser' | |
| ) | |
| io_k8s_api_core_v1_LoadBalancerIngress: IoK8sApiCoreV1LoadBalancerIngress = Field( | |
| ..., alias='io.k8s.api.core.v1.LoadBalancerIngress' | |
| ) | |
| io_k8s_api_core_v1_LoadBalancerStatus: IoK8sApiCoreV1LoadBalancerStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.LoadBalancerStatus' | |
| ) | |
| io_k8s_api_core_v1_LocalObjectReference: IoK8sApiCoreV1LocalObjectReference = Field( | |
| ..., alias='io.k8s.api.core.v1.LocalObjectReference' | |
| ) | |
| io_k8s_api_core_v1_LocalVolumeSource: IoK8sApiCoreV1LocalVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.LocalVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ModifyVolumeStatus: IoK8sApiCoreV1ModifyVolumeStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ModifyVolumeStatus' | |
| ) | |
| io_k8s_api_core_v1_NFSVolumeSource: IoK8sApiCoreV1NFSVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.NFSVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_Namespace: IoK8sApiCoreV1Namespace = Field( | |
| ..., alias='io.k8s.api.core.v1.Namespace' | |
| ) | |
| io_k8s_api_core_v1_NamespaceCondition: IoK8sApiCoreV1NamespaceCondition = Field( | |
| ..., alias='io.k8s.api.core.v1.NamespaceCondition' | |
| ) | |
| io_k8s_api_core_v1_NamespaceList: IoK8sApiCoreV1NamespaceList = Field( | |
| ..., alias='io.k8s.api.core.v1.NamespaceList' | |
| ) | |
| io_k8s_api_core_v1_NamespaceSpec: IoK8sApiCoreV1NamespaceSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.NamespaceSpec' | |
| ) | |
| io_k8s_api_core_v1_NamespaceStatus: IoK8sApiCoreV1NamespaceStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.NamespaceStatus' | |
| ) | |
| io_k8s_api_core_v1_Node: IoK8sApiCoreV1Node = Field( | |
| ..., alias='io.k8s.api.core.v1.Node' | |
| ) | |
| io_k8s_api_core_v1_NodeAddress: IoK8sApiCoreV1NodeAddress = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeAddress' | |
| ) | |
| io_k8s_api_core_v1_NodeAffinity: IoK8sApiCoreV1NodeAffinity = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeAffinity' | |
| ) | |
| io_k8s_api_core_v1_NodeCondition: IoK8sApiCoreV1NodeCondition = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeCondition' | |
| ) | |
| io_k8s_api_core_v1_NodeConfigSource: IoK8sApiCoreV1NodeConfigSource = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeConfigSource' | |
| ) | |
| io_k8s_api_core_v1_NodeConfigStatus: IoK8sApiCoreV1NodeConfigStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeConfigStatus' | |
| ) | |
| io_k8s_api_core_v1_NodeDaemonEndpoints: IoK8sApiCoreV1NodeDaemonEndpoints = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeDaemonEndpoints' | |
| ) | |
| io_k8s_api_core_v1_NodeFeatures: IoK8sApiCoreV1NodeFeatures = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeFeatures' | |
| ) | |
| io_k8s_api_core_v1_NodeList: IoK8sApiCoreV1NodeList = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeList' | |
| ) | |
| io_k8s_api_core_v1_NodeRuntimeHandler: IoK8sApiCoreV1NodeRuntimeHandler = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeRuntimeHandler' | |
| ) | |
| io_k8s_api_core_v1_NodeRuntimeHandlerFeatures: ( | |
| IoK8sApiCoreV1NodeRuntimeHandlerFeatures | |
| ) = Field(..., alias='io.k8s.api.core.v1.NodeRuntimeHandlerFeatures') | |
| io_k8s_api_core_v1_NodeSelector: IoK8sApiCoreV1NodeSelector = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeSelector' | |
| ) | |
| io_k8s_api_core_v1_NodeSelectorRequirement: ( | |
| IoK8sApiCoreV1NodeSelectorRequirement | |
| ) = Field(..., alias='io.k8s.api.core.v1.NodeSelectorRequirement') | |
| io_k8s_api_core_v1_NodeSelectorTerm: IoK8sApiCoreV1NodeSelectorTerm = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeSelectorTerm' | |
| ) | |
| io_k8s_api_core_v1_NodeSpec: IoK8sApiCoreV1NodeSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeSpec' | |
| ) | |
| io_k8s_api_core_v1_NodeStatus: IoK8sApiCoreV1NodeStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeStatus' | |
| ) | |
| io_k8s_api_core_v1_NodeSystemInfo: IoK8sApiCoreV1NodeSystemInfo = Field( | |
| ..., alias='io.k8s.api.core.v1.NodeSystemInfo' | |
| ) | |
| io_k8s_api_core_v1_ObjectFieldSelector: IoK8sApiCoreV1ObjectFieldSelector = Field( | |
| ..., alias='io.k8s.api.core.v1.ObjectFieldSelector' | |
| ) | |
| io_k8s_api_core_v1_ObjectReference: IoK8sApiCoreV1ObjectReference = Field( | |
| ..., alias='io.k8s.api.core.v1.ObjectReference' | |
| ) | |
| io_k8s_api_core_v1_PersistentVolume: IoK8sApiCoreV1PersistentVolume = Field( | |
| ..., alias='io.k8s.api.core.v1.PersistentVolume' | |
| ) | |
| io_k8s_api_core_v1_PersistentVolumeClaim: IoK8sApiCoreV1PersistentVolumeClaim = ( | |
| Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaim') | |
| ) | |
| io_k8s_api_core_v1_PersistentVolumeClaimCondition: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimCondition | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimCondition') | |
| io_k8s_api_core_v1_PersistentVolumeClaimList: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimList | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimList') | |
| io_k8s_api_core_v1_PersistentVolumeClaimSpec: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimSpec | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimSpec') | |
| io_k8s_api_core_v1_PersistentVolumeClaimStatus: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimStatus | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimStatus') | |
| io_k8s_api_core_v1_PersistentVolumeClaimTemplate: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimTemplate | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimTemplate') | |
| io_k8s_api_core_v1_PersistentVolumeClaimVolumeSource: ( | |
| IoK8sApiCoreV1PersistentVolumeClaimVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.PersistentVolumeClaimVolumeSource') | |
| io_k8s_api_core_v1_PersistentVolumeList: IoK8sApiCoreV1PersistentVolumeList = Field( | |
| ..., alias='io.k8s.api.core.v1.PersistentVolumeList' | |
| ) | |
| io_k8s_api_core_v1_PersistentVolumeSpec: IoK8sApiCoreV1PersistentVolumeSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.PersistentVolumeSpec' | |
| ) | |
| io_k8s_api_core_v1_PersistentVolumeStatus: IoK8sApiCoreV1PersistentVolumeStatus = ( | |
| Field(..., alias='io.k8s.api.core.v1.PersistentVolumeStatus') | |
| ) | |
| io_k8s_api_core_v1_PhotonPersistentDiskVolumeSource: ( | |
| IoK8sApiCoreV1PhotonPersistentDiskVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.PhotonPersistentDiskVolumeSource') | |
| io_k8s_api_core_v1_Pod: IoK8sApiCoreV1Pod = Field( | |
| ..., alias='io.k8s.api.core.v1.Pod' | |
| ) | |
| io_k8s_api_core_v1_PodAffinity: IoK8sApiCoreV1PodAffinity = Field( | |
| ..., alias='io.k8s.api.core.v1.PodAffinity' | |
| ) | |
| io_k8s_api_core_v1_PodAffinityTerm: IoK8sApiCoreV1PodAffinityTerm = Field( | |
| ..., alias='io.k8s.api.core.v1.PodAffinityTerm' | |
| ) | |
| io_k8s_api_core_v1_PodAntiAffinity: IoK8sApiCoreV1PodAntiAffinity = Field( | |
| ..., alias='io.k8s.api.core.v1.PodAntiAffinity' | |
| ) | |
| io_k8s_api_core_v1_PodCondition: IoK8sApiCoreV1PodCondition = Field( | |
| ..., alias='io.k8s.api.core.v1.PodCondition' | |
| ) | |
| io_k8s_api_core_v1_PodDNSConfig: IoK8sApiCoreV1PodDNSConfig = Field( | |
| ..., alias='io.k8s.api.core.v1.PodDNSConfig' | |
| ) | |
| io_k8s_api_core_v1_PodDNSConfigOption: IoK8sApiCoreV1PodDNSConfigOption = Field( | |
| ..., alias='io.k8s.api.core.v1.PodDNSConfigOption' | |
| ) | |
| io_k8s_api_core_v1_PodIP: IoK8sApiCoreV1PodIP = Field( | |
| ..., alias='io.k8s.api.core.v1.PodIP' | |
| ) | |
| io_k8s_api_core_v1_PodList: IoK8sApiCoreV1PodList = Field( | |
| ..., alias='io.k8s.api.core.v1.PodList' | |
| ) | |
| io_k8s_api_core_v1_PodOS: IoK8sApiCoreV1PodOS = Field( | |
| ..., alias='io.k8s.api.core.v1.PodOS' | |
| ) | |
| io_k8s_api_core_v1_PodReadinessGate: IoK8sApiCoreV1PodReadinessGate = Field( | |
| ..., alias='io.k8s.api.core.v1.PodReadinessGate' | |
| ) | |
| io_k8s_api_core_v1_PodResourceClaim: IoK8sApiCoreV1PodResourceClaim = Field( | |
| ..., alias='io.k8s.api.core.v1.PodResourceClaim' | |
| ) | |
| io_k8s_api_core_v1_PodResourceClaimStatus: IoK8sApiCoreV1PodResourceClaimStatus = ( | |
| Field(..., alias='io.k8s.api.core.v1.PodResourceClaimStatus') | |
| ) | |
| io_k8s_api_core_v1_PodSchedulingGate: IoK8sApiCoreV1PodSchedulingGate = Field( | |
| ..., alias='io.k8s.api.core.v1.PodSchedulingGate' | |
| ) | |
| io_k8s_api_core_v1_PodSecurityContext: IoK8sApiCoreV1PodSecurityContext = Field( | |
| ..., alias='io.k8s.api.core.v1.PodSecurityContext' | |
| ) | |
| io_k8s_api_core_v1_PodSpec: IoK8sApiCoreV1PodSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.PodSpec' | |
| ) | |
| io_k8s_api_core_v1_PodStatus: IoK8sApiCoreV1PodStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.PodStatus' | |
| ) | |
| io_k8s_api_core_v1_PodTemplate: IoK8sApiCoreV1PodTemplate = Field( | |
| ..., alias='io.k8s.api.core.v1.PodTemplate' | |
| ) | |
| io_k8s_api_core_v1_PodTemplateList: IoK8sApiCoreV1PodTemplateList = Field( | |
| ..., alias='io.k8s.api.core.v1.PodTemplateList' | |
| ) | |
| io_k8s_api_core_v1_PodTemplateSpec: IoK8sApiCoreV1PodTemplateSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.PodTemplateSpec' | |
| ) | |
| io_k8s_api_core_v1_PortStatus: IoK8sApiCoreV1PortStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.PortStatus' | |
| ) | |
| io_k8s_api_core_v1_PortworxVolumeSource: IoK8sApiCoreV1PortworxVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.PortworxVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_PreferredSchedulingTerm: ( | |
| IoK8sApiCoreV1PreferredSchedulingTerm | |
| ) = Field(..., alias='io.k8s.api.core.v1.PreferredSchedulingTerm') | |
| io_k8s_api_core_v1_Probe: IoK8sApiCoreV1Probe = Field( | |
| ..., alias='io.k8s.api.core.v1.Probe' | |
| ) | |
| io_k8s_api_core_v1_ProjectedVolumeSource: IoK8sApiCoreV1ProjectedVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.ProjectedVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_QuobyteVolumeSource: IoK8sApiCoreV1QuobyteVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.QuobyteVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_RBDPersistentVolumeSource: ( | |
| IoK8sApiCoreV1RBDPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.RBDPersistentVolumeSource') | |
| io_k8s_api_core_v1_RBDVolumeSource: IoK8sApiCoreV1RBDVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.RBDVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ReplicationController: IoK8sApiCoreV1ReplicationController = ( | |
| Field(..., alias='io.k8s.api.core.v1.ReplicationController') | |
| ) | |
| io_k8s_api_core_v1_ReplicationControllerCondition: ( | |
| IoK8sApiCoreV1ReplicationControllerCondition | |
| ) = Field(..., alias='io.k8s.api.core.v1.ReplicationControllerCondition') | |
| io_k8s_api_core_v1_ReplicationControllerList: ( | |
| IoK8sApiCoreV1ReplicationControllerList | |
| ) = Field(..., alias='io.k8s.api.core.v1.ReplicationControllerList') | |
| io_k8s_api_core_v1_ReplicationControllerSpec: ( | |
| IoK8sApiCoreV1ReplicationControllerSpec | |
| ) = Field(..., alias='io.k8s.api.core.v1.ReplicationControllerSpec') | |
| io_k8s_api_core_v1_ReplicationControllerStatus: ( | |
| IoK8sApiCoreV1ReplicationControllerStatus | |
| ) = Field(..., alias='io.k8s.api.core.v1.ReplicationControllerStatus') | |
| io_k8s_api_core_v1_ResourceClaim: IoK8sApiCoreV1ResourceClaim = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceClaim' | |
| ) | |
| io_k8s_api_core_v1_ResourceFieldSelector: IoK8sApiCoreV1ResourceFieldSelector = ( | |
| Field(..., alias='io.k8s.api.core.v1.ResourceFieldSelector') | |
| ) | |
| io_k8s_api_core_v1_ResourceHealth: IoK8sApiCoreV1ResourceHealth = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceHealth' | |
| ) | |
| io_k8s_api_core_v1_ResourceQuota: IoK8sApiCoreV1ResourceQuota = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceQuota' | |
| ) | |
| io_k8s_api_core_v1_ResourceQuotaList: IoK8sApiCoreV1ResourceQuotaList = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceQuotaList' | |
| ) | |
| io_k8s_api_core_v1_ResourceQuotaSpec: IoK8sApiCoreV1ResourceQuotaSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceQuotaSpec' | |
| ) | |
| io_k8s_api_core_v1_ResourceQuotaStatus: IoK8sApiCoreV1ResourceQuotaStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceQuotaStatus' | |
| ) | |
| io_k8s_api_core_v1_ResourceRequirements: IoK8sApiCoreV1ResourceRequirements = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceRequirements' | |
| ) | |
| io_k8s_api_core_v1_ResourceStatus: IoK8sApiCoreV1ResourceStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ResourceStatus' | |
| ) | |
| io_k8s_api_core_v1_SELinuxOptions: IoK8sApiCoreV1SELinuxOptions = Field( | |
| ..., alias='io.k8s.api.core.v1.SELinuxOptions' | |
| ) | |
| io_k8s_api_core_v1_ScaleIOPersistentVolumeSource: ( | |
| IoK8sApiCoreV1ScaleIOPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.ScaleIOPersistentVolumeSource') | |
| io_k8s_api_core_v1_ScaleIOVolumeSource: IoK8sApiCoreV1ScaleIOVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.ScaleIOVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_ScopeSelector: IoK8sApiCoreV1ScopeSelector = Field( | |
| ..., alias='io.k8s.api.core.v1.ScopeSelector' | |
| ) | |
| io_k8s_api_core_v1_ScopedResourceSelectorRequirement: ( | |
| IoK8sApiCoreV1ScopedResourceSelectorRequirement | |
| ) = Field(..., alias='io.k8s.api.core.v1.ScopedResourceSelectorRequirement') | |
| io_k8s_api_core_v1_SeccompProfile: IoK8sApiCoreV1SeccompProfile = Field( | |
| ..., alias='io.k8s.api.core.v1.SeccompProfile' | |
| ) | |
| io_k8s_api_core_v1_Secret: IoK8sApiCoreV1Secret = Field( | |
| ..., alias='io.k8s.api.core.v1.Secret' | |
| ) | |
| io_k8s_api_core_v1_SecretEnvSource: IoK8sApiCoreV1SecretEnvSource = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretEnvSource' | |
| ) | |
| io_k8s_api_core_v1_SecretKeySelector: IoK8sApiCoreV1SecretKeySelector = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretKeySelector' | |
| ) | |
| io_k8s_api_core_v1_SecretList: IoK8sApiCoreV1SecretList = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretList' | |
| ) | |
| io_k8s_api_core_v1_SecretProjection: IoK8sApiCoreV1SecretProjection = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretProjection' | |
| ) | |
| io_k8s_api_core_v1_SecretReference: IoK8sApiCoreV1SecretReference = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretReference' | |
| ) | |
| io_k8s_api_core_v1_SecretVolumeSource: IoK8sApiCoreV1SecretVolumeSource = Field( | |
| ..., alias='io.k8s.api.core.v1.SecretVolumeSource' | |
| ) | |
| io_k8s_api_core_v1_SecurityContext: IoK8sApiCoreV1SecurityContext = Field( | |
| ..., alias='io.k8s.api.core.v1.SecurityContext' | |
| ) | |
| io_k8s_api_core_v1_Service: IoK8sApiCoreV1Service = Field( | |
| ..., alias='io.k8s.api.core.v1.Service' | |
| ) | |
| io_k8s_api_core_v1_ServiceAccount: IoK8sApiCoreV1ServiceAccount = Field( | |
| ..., alias='io.k8s.api.core.v1.ServiceAccount' | |
| ) | |
| io_k8s_api_core_v1_ServiceAccountList: IoK8sApiCoreV1ServiceAccountList = Field( | |
| ..., alias='io.k8s.api.core.v1.ServiceAccountList' | |
| ) | |
| io_k8s_api_core_v1_ServiceAccountTokenProjection: ( | |
| IoK8sApiCoreV1ServiceAccountTokenProjection | |
| ) = Field(..., alias='io.k8s.api.core.v1.ServiceAccountTokenProjection') | |
| io_k8s_api_core_v1_ServiceList: IoK8sApiCoreV1ServiceList = Field( | |
| ..., alias='io.k8s.api.core.v1.ServiceList' | |
| ) | |
| io_k8s_api_core_v1_ServicePort: IoK8sApiCoreV1ServicePort = Field( | |
| ..., alias='io.k8s.api.core.v1.ServicePort' | |
| ) | |
| io_k8s_api_core_v1_ServiceSpec: IoK8sApiCoreV1ServiceSpec = Field( | |
| ..., alias='io.k8s.api.core.v1.ServiceSpec' | |
| ) | |
| io_k8s_api_core_v1_ServiceStatus: IoK8sApiCoreV1ServiceStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.ServiceStatus' | |
| ) | |
| io_k8s_api_core_v1_SessionAffinityConfig: IoK8sApiCoreV1SessionAffinityConfig = ( | |
| Field(..., alias='io.k8s.api.core.v1.SessionAffinityConfig') | |
| ) | |
| io_k8s_api_core_v1_SleepAction: IoK8sApiCoreV1SleepAction = Field( | |
| ..., alias='io.k8s.api.core.v1.SleepAction' | |
| ) | |
| io_k8s_api_core_v1_StorageOSPersistentVolumeSource: ( | |
| IoK8sApiCoreV1StorageOSPersistentVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.StorageOSPersistentVolumeSource') | |
| io_k8s_api_core_v1_StorageOSVolumeSource: IoK8sApiCoreV1StorageOSVolumeSource = ( | |
| Field(..., alias='io.k8s.api.core.v1.StorageOSVolumeSource') | |
| ) | |
| io_k8s_api_core_v1_Sysctl: IoK8sApiCoreV1Sysctl = Field( | |
| ..., alias='io.k8s.api.core.v1.Sysctl' | |
| ) | |
| io_k8s_api_core_v1_TCPSocketAction: IoK8sApiCoreV1TCPSocketAction = Field( | |
| ..., alias='io.k8s.api.core.v1.TCPSocketAction' | |
| ) | |
| io_k8s_api_core_v1_Taint: IoK8sApiCoreV1Taint = Field( | |
| ..., alias='io.k8s.api.core.v1.Taint' | |
| ) | |
| io_k8s_api_core_v1_Toleration: IoK8sApiCoreV1Toleration = Field( | |
| ..., alias='io.k8s.api.core.v1.Toleration' | |
| ) | |
| io_k8s_api_core_v1_TopologySelectorLabelRequirement: ( | |
| IoK8sApiCoreV1TopologySelectorLabelRequirement | |
| ) = Field(..., alias='io.k8s.api.core.v1.TopologySelectorLabelRequirement') | |
| io_k8s_api_core_v1_TopologySelectorTerm: IoK8sApiCoreV1TopologySelectorTerm = Field( | |
| ..., alias='io.k8s.api.core.v1.TopologySelectorTerm' | |
| ) | |
| io_k8s_api_core_v1_TopologySpreadConstraint: ( | |
| IoK8sApiCoreV1TopologySpreadConstraint | |
| ) = Field(..., alias='io.k8s.api.core.v1.TopologySpreadConstraint') | |
| io_k8s_api_core_v1_TypedLocalObjectReference: ( | |
| IoK8sApiCoreV1TypedLocalObjectReference | |
| ) = Field(..., alias='io.k8s.api.core.v1.TypedLocalObjectReference') | |
| io_k8s_api_core_v1_TypedObjectReference: IoK8sApiCoreV1TypedObjectReference = Field( | |
| ..., alias='io.k8s.api.core.v1.TypedObjectReference' | |
| ) | |
| io_k8s_api_core_v1_Volume: IoK8sApiCoreV1Volume = Field( | |
| ..., alias='io.k8s.api.core.v1.Volume' | |
| ) | |
| io_k8s_api_core_v1_VolumeDevice: IoK8sApiCoreV1VolumeDevice = Field( | |
| ..., alias='io.k8s.api.core.v1.VolumeDevice' | |
| ) | |
| io_k8s_api_core_v1_VolumeMount: IoK8sApiCoreV1VolumeMount = Field( | |
| ..., alias='io.k8s.api.core.v1.VolumeMount' | |
| ) | |
| io_k8s_api_core_v1_VolumeMountStatus: IoK8sApiCoreV1VolumeMountStatus = Field( | |
| ..., alias='io.k8s.api.core.v1.VolumeMountStatus' | |
| ) | |
| io_k8s_api_core_v1_VolumeNodeAffinity: IoK8sApiCoreV1VolumeNodeAffinity = Field( | |
| ..., alias='io.k8s.api.core.v1.VolumeNodeAffinity' | |
| ) | |
| io_k8s_api_core_v1_VolumeProjection: IoK8sApiCoreV1VolumeProjection = Field( | |
| ..., alias='io.k8s.api.core.v1.VolumeProjection' | |
| ) | |
| io_k8s_api_core_v1_VolumeResourceRequirements: ( | |
| IoK8sApiCoreV1VolumeResourceRequirements | |
| ) = Field(..., alias='io.k8s.api.core.v1.VolumeResourceRequirements') | |
| io_k8s_api_core_v1_VsphereVirtualDiskVolumeSource: ( | |
| IoK8sApiCoreV1VsphereVirtualDiskVolumeSource | |
| ) = Field(..., alias='io.k8s.api.core.v1.VsphereVirtualDiskVolumeSource') | |
| io_k8s_api_core_v1_WeightedPodAffinityTerm: ( | |
| IoK8sApiCoreV1WeightedPodAffinityTerm | |
| ) = Field(..., alias='io.k8s.api.core.v1.WeightedPodAffinityTerm') | |
| io_k8s_api_core_v1_WindowsSecurityContextOptions: ( | |
| IoK8sApiCoreV1WindowsSecurityContextOptions | |
| ) = Field(..., alias='io.k8s.api.core.v1.WindowsSecurityContextOptions') | |
| io_k8s_api_discovery_v1_Endpoint: IoK8sApiDiscoveryV1Endpoint = Field( | |
| ..., alias='io.k8s.api.discovery.v1.Endpoint' | |
| ) | |
| io_k8s_api_discovery_v1_EndpointConditions: ( | |
| IoK8sApiDiscoveryV1EndpointConditions | |
| ) = Field(..., alias='io.k8s.api.discovery.v1.EndpointConditions') | |
| io_k8s_api_discovery_v1_EndpointHints: IoK8sApiDiscoveryV1EndpointHints = Field( | |
| ..., alias='io.k8s.api.discovery.v1.EndpointHints' | |
| ) | |
| io_k8s_api_discovery_v1_EndpointPort: IoK8sApiDiscoveryV1EndpointPort = Field( | |
| ..., alias='io.k8s.api.discovery.v1.EndpointPort' | |
| ) | |
| io_k8s_api_discovery_v1_EndpointSlice: IoK8sApiDiscoveryV1EndpointSlice = Field( | |
| ..., alias='io.k8s.api.discovery.v1.EndpointSlice' | |
| ) | |
| io_k8s_api_discovery_v1_EndpointSliceList: IoK8sApiDiscoveryV1EndpointSliceList = ( | |
| Field(..., alias='io.k8s.api.discovery.v1.EndpointSliceList') | |
| ) | |
| io_k8s_api_discovery_v1_ForZone: IoK8sApiDiscoveryV1ForZone = Field( | |
| ..., alias='io.k8s.api.discovery.v1.ForZone' | |
| ) | |
| io_k8s_api_events_v1_Event: IoK8sApiEventsV1Event = Field( | |
| ..., alias='io.k8s.api.events.v1.Event' | |
| ) | |
| io_k8s_api_events_v1_EventList: IoK8sApiEventsV1EventList = Field( | |
| ..., alias='io.k8s.api.events.v1.EventList' | |
| ) | |
| io_k8s_api_events_v1_EventSeries: IoK8sApiEventsV1EventSeries = Field( | |
| ..., alias='io.k8s.api.events.v1.EventSeries' | |
| ) | |
| io_k8s_api_flowcontrol_v1_ExemptPriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1ExemptPriorityLevelConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.ExemptPriorityLevelConfiguration') | |
| io_k8s_api_flowcontrol_v1_FlowDistinguisherMethod: ( | |
| IoK8sApiFlowcontrolV1FlowDistinguisherMethod | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod') | |
| io_k8s_api_flowcontrol_v1_FlowSchema: IoK8sApiFlowcontrolV1FlowSchema = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.FlowSchema' | |
| ) | |
| io_k8s_api_flowcontrol_v1_FlowSchemaCondition: ( | |
| IoK8sApiFlowcontrolV1FlowSchemaCondition | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.FlowSchemaCondition') | |
| io_k8s_api_flowcontrol_v1_FlowSchemaList: IoK8sApiFlowcontrolV1FlowSchemaList = ( | |
| Field(..., alias='io.k8s.api.flowcontrol.v1.FlowSchemaList') | |
| ) | |
| io_k8s_api_flowcontrol_v1_FlowSchemaSpec: IoK8sApiFlowcontrolV1FlowSchemaSpec = ( | |
| Field(..., alias='io.k8s.api.flowcontrol.v1.FlowSchemaSpec') | |
| ) | |
| io_k8s_api_flowcontrol_v1_FlowSchemaStatus: ( | |
| IoK8sApiFlowcontrolV1FlowSchemaStatus | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.FlowSchemaStatus') | |
| io_k8s_api_flowcontrol_v1_GroupSubject: IoK8sApiFlowcontrolV1GroupSubject = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.GroupSubject' | |
| ) | |
| io_k8s_api_flowcontrol_v1_LimitResponse: IoK8sApiFlowcontrolV1LimitResponse = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.LimitResponse' | |
| ) | |
| io_k8s_api_flowcontrol_v1_LimitedPriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1LimitedPriorityLevelConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.LimitedPriorityLevelConfiguration') | |
| io_k8s_api_flowcontrol_v1_NonResourcePolicyRule: ( | |
| IoK8sApiFlowcontrolV1NonResourcePolicyRule | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.NonResourcePolicyRule') | |
| io_k8s_api_flowcontrol_v1_PolicyRulesWithSubjects: ( | |
| IoK8sApiFlowcontrolV1PolicyRulesWithSubjects | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.PolicyRulesWithSubjects') | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfiguration') | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationCondition: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfigurationCondition | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationCondition' | |
| ) | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationList: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfigurationList | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationList') | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationReference: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfigurationReference | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference' | |
| ) | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationSpec: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfigurationSpec | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationSpec') | |
| io_k8s_api_flowcontrol_v1_PriorityLevelConfigurationStatus: ( | |
| IoK8sApiFlowcontrolV1PriorityLevelConfigurationStatus | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationStatus') | |
| io_k8s_api_flowcontrol_v1_QueuingConfiguration: ( | |
| IoK8sApiFlowcontrolV1QueuingConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.QueuingConfiguration') | |
| io_k8s_api_flowcontrol_v1_ResourcePolicyRule: ( | |
| IoK8sApiFlowcontrolV1ResourcePolicyRule | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.ResourcePolicyRule') | |
| io_k8s_api_flowcontrol_v1_ServiceAccountSubject: ( | |
| IoK8sApiFlowcontrolV1ServiceAccountSubject | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1.ServiceAccountSubject') | |
| io_k8s_api_flowcontrol_v1_Subject: IoK8sApiFlowcontrolV1Subject = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.Subject' | |
| ) | |
| io_k8s_api_flowcontrol_v1_UserSubject: IoK8sApiFlowcontrolV1UserSubject = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1.UserSubject' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_ExemptPriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1beta3ExemptPriorityLevelConfiguration | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.ExemptPriorityLevelConfiguration' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_FlowDistinguisherMethod: ( | |
| IoK8sApiFlowcontrolV1beta3FlowDistinguisherMethod | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod') | |
| io_k8s_api_flowcontrol_v1beta3_FlowSchema: IoK8sApiFlowcontrolV1beta3FlowSchema = ( | |
| Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowSchema') | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_FlowSchemaCondition: ( | |
| IoK8sApiFlowcontrolV1beta3FlowSchemaCondition | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowSchemaCondition') | |
| io_k8s_api_flowcontrol_v1beta3_FlowSchemaList: ( | |
| IoK8sApiFlowcontrolV1beta3FlowSchemaList | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowSchemaList') | |
| io_k8s_api_flowcontrol_v1beta3_FlowSchemaSpec: ( | |
| IoK8sApiFlowcontrolV1beta3FlowSchemaSpec | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowSchemaSpec') | |
| io_k8s_api_flowcontrol_v1beta3_FlowSchemaStatus: ( | |
| IoK8sApiFlowcontrolV1beta3FlowSchemaStatus | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.FlowSchemaStatus') | |
| io_k8s_api_flowcontrol_v1beta3_GroupSubject: ( | |
| IoK8sApiFlowcontrolV1beta3GroupSubject | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.GroupSubject') | |
| io_k8s_api_flowcontrol_v1beta3_LimitResponse: ( | |
| IoK8sApiFlowcontrolV1beta3LimitResponse | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.LimitResponse') | |
| io_k8s_api_flowcontrol_v1beta3_LimitedPriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1beta3LimitedPriorityLevelConfiguration | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.LimitedPriorityLevelConfiguration' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_NonResourcePolicyRule: ( | |
| IoK8sApiFlowcontrolV1beta3NonResourcePolicyRule | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.NonResourcePolicyRule') | |
| io_k8s_api_flowcontrol_v1beta3_PolicyRulesWithSubjects: ( | |
| IoK8sApiFlowcontrolV1beta3PolicyRulesWithSubjects | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.PolicyRulesWithSubjects') | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfiguration: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfiguration') | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationCondition: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationCondition | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationCondition' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationList: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationList | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationList' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationReference: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationReference | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationSpec: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationSpec | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationSpec' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_PriorityLevelConfigurationStatus: ( | |
| IoK8sApiFlowcontrolV1beta3PriorityLevelConfigurationStatus | |
| ) = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationStatus' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_QueuingConfiguration: ( | |
| IoK8sApiFlowcontrolV1beta3QueuingConfiguration | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.QueuingConfiguration') | |
| io_k8s_api_flowcontrol_v1beta3_ResourcePolicyRule: ( | |
| IoK8sApiFlowcontrolV1beta3ResourcePolicyRule | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.ResourcePolicyRule') | |
| io_k8s_api_flowcontrol_v1beta3_ServiceAccountSubject: ( | |
| IoK8sApiFlowcontrolV1beta3ServiceAccountSubject | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.ServiceAccountSubject') | |
| io_k8s_api_flowcontrol_v1beta3_Subject: IoK8sApiFlowcontrolV1beta3Subject = Field( | |
| ..., alias='io.k8s.api.flowcontrol.v1beta3.Subject' | |
| ) | |
| io_k8s_api_flowcontrol_v1beta3_UserSubject: ( | |
| IoK8sApiFlowcontrolV1beta3UserSubject | |
| ) = Field(..., alias='io.k8s.api.flowcontrol.v1beta3.UserSubject') | |
| io_k8s_api_networking_v1_HTTPIngressPath: IoK8sApiNetworkingV1HTTPIngressPath = ( | |
| Field(..., alias='io.k8s.api.networking.v1.HTTPIngressPath') | |
| ) | |
| io_k8s_api_networking_v1_HTTPIngressRuleValue: ( | |
| IoK8sApiNetworkingV1HTTPIngressRuleValue | |
| ) = Field(..., alias='io.k8s.api.networking.v1.HTTPIngressRuleValue') | |
| io_k8s_api_networking_v1_IPBlock: IoK8sApiNetworkingV1IPBlock = Field( | |
| ..., alias='io.k8s.api.networking.v1.IPBlock' | |
| ) | |
| io_k8s_api_networking_v1_Ingress: IoK8sApiNetworkingV1Ingress = Field( | |
| ..., alias='io.k8s.api.networking.v1.Ingress' | |
| ) | |
| io_k8s_api_networking_v1_IngressBackend: IoK8sApiNetworkingV1IngressBackend = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressBackend' | |
| ) | |
| io_k8s_api_networking_v1_IngressClass: IoK8sApiNetworkingV1IngressClass = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressClass' | |
| ) | |
| io_k8s_api_networking_v1_IngressClassList: IoK8sApiNetworkingV1IngressClassList = ( | |
| Field(..., alias='io.k8s.api.networking.v1.IngressClassList') | |
| ) | |
| io_k8s_api_networking_v1_IngressClassParametersReference: ( | |
| IoK8sApiNetworkingV1IngressClassParametersReference | |
| ) = Field(..., alias='io.k8s.api.networking.v1.IngressClassParametersReference') | |
| io_k8s_api_networking_v1_IngressClassSpec: IoK8sApiNetworkingV1IngressClassSpec = ( | |
| Field(..., alias='io.k8s.api.networking.v1.IngressClassSpec') | |
| ) | |
| io_k8s_api_networking_v1_IngressList: IoK8sApiNetworkingV1IngressList = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressList' | |
| ) | |
| io_k8s_api_networking_v1_IngressLoadBalancerIngress: ( | |
| IoK8sApiNetworkingV1IngressLoadBalancerIngress | |
| ) = Field(..., alias='io.k8s.api.networking.v1.IngressLoadBalancerIngress') | |
| io_k8s_api_networking_v1_IngressLoadBalancerStatus: ( | |
| IoK8sApiNetworkingV1IngressLoadBalancerStatus | |
| ) = Field(..., alias='io.k8s.api.networking.v1.IngressLoadBalancerStatus') | |
| io_k8s_api_networking_v1_IngressPortStatus: ( | |
| IoK8sApiNetworkingV1IngressPortStatus | |
| ) = Field(..., alias='io.k8s.api.networking.v1.IngressPortStatus') | |
| io_k8s_api_networking_v1_IngressRule: IoK8sApiNetworkingV1IngressRule = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressRule' | |
| ) | |
| io_k8s_api_networking_v1_IngressServiceBackend: ( | |
| IoK8sApiNetworkingV1IngressServiceBackend | |
| ) = Field(..., alias='io.k8s.api.networking.v1.IngressServiceBackend') | |
| io_k8s_api_networking_v1_IngressSpec: IoK8sApiNetworkingV1IngressSpec = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressSpec' | |
| ) | |
| io_k8s_api_networking_v1_IngressStatus: IoK8sApiNetworkingV1IngressStatus = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressStatus' | |
| ) | |
| io_k8s_api_networking_v1_IngressTLS: IoK8sApiNetworkingV1IngressTLS = Field( | |
| ..., alias='io.k8s.api.networking.v1.IngressTLS' | |
| ) | |
| io_k8s_api_networking_v1_NetworkPolicy: IoK8sApiNetworkingV1NetworkPolicy = Field( | |
| ..., alias='io.k8s.api.networking.v1.NetworkPolicy' | |
| ) | |
| io_k8s_api_networking_v1_NetworkPolicyEgressRule: ( | |
| IoK8sApiNetworkingV1NetworkPolicyEgressRule | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicyEgressRule') | |
| io_k8s_api_networking_v1_NetworkPolicyIngressRule: ( | |
| IoK8sApiNetworkingV1NetworkPolicyIngressRule | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicyIngressRule') | |
| io_k8s_api_networking_v1_NetworkPolicyList: ( | |
| IoK8sApiNetworkingV1NetworkPolicyList | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicyList') | |
| io_k8s_api_networking_v1_NetworkPolicyPeer: ( | |
| IoK8sApiNetworkingV1NetworkPolicyPeer | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicyPeer') | |
| io_k8s_api_networking_v1_NetworkPolicyPort: ( | |
| IoK8sApiNetworkingV1NetworkPolicyPort | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicyPort') | |
| io_k8s_api_networking_v1_NetworkPolicySpec: ( | |
| IoK8sApiNetworkingV1NetworkPolicySpec | |
| ) = Field(..., alias='io.k8s.api.networking.v1.NetworkPolicySpec') | |
| io_k8s_api_networking_v1_ServiceBackendPort: ( | |
| IoK8sApiNetworkingV1ServiceBackendPort | |
| ) = Field(..., alias='io.k8s.api.networking.v1.ServiceBackendPort') | |
| io_k8s_api_networking_v1beta1_IPAddress: IoK8sApiNetworkingV1beta1IPAddress = Field( | |
| ..., alias='io.k8s.api.networking.v1beta1.IPAddress' | |
| ) | |
| io_k8s_api_networking_v1beta1_IPAddressList: ( | |
| IoK8sApiNetworkingV1beta1IPAddressList | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.IPAddressList') | |
| io_k8s_api_networking_v1beta1_IPAddressSpec: ( | |
| IoK8sApiNetworkingV1beta1IPAddressSpec | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.IPAddressSpec') | |
| io_k8s_api_networking_v1beta1_ParentReference: ( | |
| IoK8sApiNetworkingV1beta1ParentReference | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.ParentReference') | |
| io_k8s_api_networking_v1beta1_ServiceCIDR: IoK8sApiNetworkingV1beta1ServiceCIDR = ( | |
| Field(..., alias='io.k8s.api.networking.v1beta1.ServiceCIDR') | |
| ) | |
| io_k8s_api_networking_v1beta1_ServiceCIDRList: ( | |
| IoK8sApiNetworkingV1beta1ServiceCIDRList | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.ServiceCIDRList') | |
| io_k8s_api_networking_v1beta1_ServiceCIDRSpec: ( | |
| IoK8sApiNetworkingV1beta1ServiceCIDRSpec | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.ServiceCIDRSpec') | |
| io_k8s_api_networking_v1beta1_ServiceCIDRStatus: ( | |
| IoK8sApiNetworkingV1beta1ServiceCIDRStatus | |
| ) = Field(..., alias='io.k8s.api.networking.v1beta1.ServiceCIDRStatus') | |
| io_k8s_api_node_v1_Overhead: IoK8sApiNodeV1Overhead = Field( | |
| ..., alias='io.k8s.api.node.v1.Overhead' | |
| ) | |
| io_k8s_api_node_v1_RuntimeClass: IoK8sApiNodeV1RuntimeClass = Field( | |
| ..., alias='io.k8s.api.node.v1.RuntimeClass' | |
| ) | |
| io_k8s_api_node_v1_RuntimeClassList: IoK8sApiNodeV1RuntimeClassList = Field( | |
| ..., alias='io.k8s.api.node.v1.RuntimeClassList' | |
| ) | |
| io_k8s_api_node_v1_Scheduling: IoK8sApiNodeV1Scheduling = Field( | |
| ..., alias='io.k8s.api.node.v1.Scheduling' | |
| ) | |
| io_k8s_api_policy_v1_Eviction: IoK8sApiPolicyV1Eviction = Field( | |
| ..., alias='io.k8s.api.policy.v1.Eviction' | |
| ) | |
| io_k8s_api_policy_v1_PodDisruptionBudget: IoK8sApiPolicyV1PodDisruptionBudget = ( | |
| Field(..., alias='io.k8s.api.policy.v1.PodDisruptionBudget') | |
| ) | |
| io_k8s_api_policy_v1_PodDisruptionBudgetList: ( | |
| IoK8sApiPolicyV1PodDisruptionBudgetList | |
| ) = Field(..., alias='io.k8s.api.policy.v1.PodDisruptionBudgetList') | |
| io_k8s_api_policy_v1_PodDisruptionBudgetSpec: ( | |
| IoK8sApiPolicyV1PodDisruptionBudgetSpec | |
| ) = Field(..., alias='io.k8s.api.policy.v1.PodDisruptionBudgetSpec') | |
| io_k8s_api_policy_v1_PodDisruptionBudgetStatus: ( | |
| IoK8sApiPolicyV1PodDisruptionBudgetStatus | |
| ) = Field(..., alias='io.k8s.api.policy.v1.PodDisruptionBudgetStatus') | |
| io_k8s_api_rbac_v1_AggregationRule: IoK8sApiRbacV1AggregationRule = Field( | |
| ..., alias='io.k8s.api.rbac.v1.AggregationRule' | |
| ) | |
| io_k8s_api_rbac_v1_ClusterRole: IoK8sApiRbacV1ClusterRole = Field( | |
| ..., alias='io.k8s.api.rbac.v1.ClusterRole' | |
| ) | |
| io_k8s_api_rbac_v1_ClusterRoleBinding: IoK8sApiRbacV1ClusterRoleBinding = Field( | |
| ..., alias='io.k8s.api.rbac.v1.ClusterRoleBinding' | |
| ) | |
| io_k8s_api_rbac_v1_ClusterRoleBindingList: IoK8sApiRbacV1ClusterRoleBindingList = ( | |
| Field(..., alias='io.k8s.api.rbac.v1.ClusterRoleBindingList') | |
| ) | |
| io_k8s_api_rbac_v1_ClusterRoleList: IoK8sApiRbacV1ClusterRoleList = Field( | |
| ..., alias='io.k8s.api.rbac.v1.ClusterRoleList' | |
| ) | |
| io_k8s_api_rbac_v1_PolicyRule: IoK8sApiRbacV1PolicyRule = Field( | |
| ..., alias='io.k8s.api.rbac.v1.PolicyRule' | |
| ) | |
| io_k8s_api_rbac_v1_Role: IoK8sApiRbacV1Role = Field( | |
| ..., alias='io.k8s.api.rbac.v1.Role' | |
| ) | |
| io_k8s_api_rbac_v1_RoleBinding: IoK8sApiRbacV1RoleBinding = Field( | |
| ..., alias='io.k8s.api.rbac.v1.RoleBinding' | |
| ) | |
| io_k8s_api_rbac_v1_RoleBindingList: IoK8sApiRbacV1RoleBindingList = Field( | |
| ..., alias='io.k8s.api.rbac.v1.RoleBindingList' | |
| ) | |
| io_k8s_api_rbac_v1_RoleList: IoK8sApiRbacV1RoleList = Field( | |
| ..., alias='io.k8s.api.rbac.v1.RoleList' | |
| ) | |
| io_k8s_api_rbac_v1_RoleRef: IoK8sApiRbacV1RoleRef = Field( | |
| ..., alias='io.k8s.api.rbac.v1.RoleRef' | |
| ) | |
| io_k8s_api_rbac_v1_Subject: IoK8sApiRbacV1Subject = Field( | |
| ..., alias='io.k8s.api.rbac.v1.Subject' | |
| ) | |
| io_k8s_api_resource_v1alpha3_AllocationResult: ( | |
| IoK8sApiResourceV1alpha3AllocationResult | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.AllocationResult') | |
| io_k8s_api_resource_v1alpha3_BasicDevice: IoK8sApiResourceV1alpha3BasicDevice = ( | |
| Field(..., alias='io.k8s.api.resource.v1alpha3.BasicDevice') | |
| ) | |
| io_k8s_api_resource_v1alpha3_CELDeviceSelector: ( | |
| IoK8sApiResourceV1alpha3CELDeviceSelector | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.CELDeviceSelector') | |
| io_k8s_api_resource_v1alpha3_Device: IoK8sApiResourceV1alpha3Device = Field( | |
| ..., alias='io.k8s.api.resource.v1alpha3.Device' | |
| ) | |
| io_k8s_api_resource_v1alpha3_DeviceAllocationConfiguration: ( | |
| IoK8sApiResourceV1alpha3DeviceAllocationConfiguration | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceAllocationConfiguration') | |
| io_k8s_api_resource_v1alpha3_DeviceAllocationResult: ( | |
| IoK8sApiResourceV1alpha3DeviceAllocationResult | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceAllocationResult') | |
| io_k8s_api_resource_v1alpha3_DeviceAttribute: ( | |
| IoK8sApiResourceV1alpha3DeviceAttribute | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceAttribute') | |
| io_k8s_api_resource_v1alpha3_DeviceClaim: IoK8sApiResourceV1alpha3DeviceClaim = ( | |
| Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClaim') | |
| ) | |
| io_k8s_api_resource_v1alpha3_DeviceClaimConfiguration: ( | |
| IoK8sApiResourceV1alpha3DeviceClaimConfiguration | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClaimConfiguration') | |
| io_k8s_api_resource_v1alpha3_DeviceClass: IoK8sApiResourceV1alpha3DeviceClass = ( | |
| Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClass') | |
| ) | |
| io_k8s_api_resource_v1alpha3_DeviceClassConfiguration: ( | |
| IoK8sApiResourceV1alpha3DeviceClassConfiguration | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClassConfiguration') | |
| io_k8s_api_resource_v1alpha3_DeviceClassList: ( | |
| IoK8sApiResourceV1alpha3DeviceClassList | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClassList') | |
| io_k8s_api_resource_v1alpha3_DeviceClassSpec: ( | |
| IoK8sApiResourceV1alpha3DeviceClassSpec | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceClassSpec') | |
| io_k8s_api_resource_v1alpha3_DeviceConstraint: ( | |
| IoK8sApiResourceV1alpha3DeviceConstraint | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceConstraint') | |
| io_k8s_api_resource_v1alpha3_DeviceRequest: ( | |
| IoK8sApiResourceV1alpha3DeviceRequest | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceRequest') | |
| io_k8s_api_resource_v1alpha3_DeviceRequestAllocationResult: ( | |
| IoK8sApiResourceV1alpha3DeviceRequestAllocationResult | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceRequestAllocationResult') | |
| io_k8s_api_resource_v1alpha3_DeviceSelector: ( | |
| IoK8sApiResourceV1alpha3DeviceSelector | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.DeviceSelector') | |
| io_k8s_api_resource_v1alpha3_OpaqueDeviceConfiguration: ( | |
| IoK8sApiResourceV1alpha3OpaqueDeviceConfiguration | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.OpaqueDeviceConfiguration') | |
| io_k8s_api_resource_v1alpha3_PodSchedulingContext: ( | |
| IoK8sApiResourceV1alpha3PodSchedulingContext | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.PodSchedulingContext') | |
| io_k8s_api_resource_v1alpha3_PodSchedulingContextList: ( | |
| IoK8sApiResourceV1alpha3PodSchedulingContextList | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.PodSchedulingContextList') | |
| io_k8s_api_resource_v1alpha3_PodSchedulingContextSpec: ( | |
| IoK8sApiResourceV1alpha3PodSchedulingContextSpec | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.PodSchedulingContextSpec') | |
| io_k8s_api_resource_v1alpha3_PodSchedulingContextStatus: ( | |
| IoK8sApiResourceV1alpha3PodSchedulingContextStatus | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.PodSchedulingContextStatus') | |
| io_k8s_api_resource_v1alpha3_ResourceClaim: ( | |
| IoK8sApiResourceV1alpha3ResourceClaim | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaim') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimConsumerReference: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimConsumerReference | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimConsumerReference') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimList: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimList | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimList') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimSchedulingStatus: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimSchedulingStatus | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimSchedulingStatus') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimSpec: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimSpec | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimSpec') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimStatus: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimStatus | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimStatus') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimTemplate: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimTemplate | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimTemplate') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimTemplateList: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimTemplateList | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimTemplateList') | |
| io_k8s_api_resource_v1alpha3_ResourceClaimTemplateSpec: ( | |
| IoK8sApiResourceV1alpha3ResourceClaimTemplateSpec | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceClaimTemplateSpec') | |
| io_k8s_api_resource_v1alpha3_ResourcePool: IoK8sApiResourceV1alpha3ResourcePool = ( | |
| Field(..., alias='io.k8s.api.resource.v1alpha3.ResourcePool') | |
| ) | |
| io_k8s_api_resource_v1alpha3_ResourceSlice: ( | |
| IoK8sApiResourceV1alpha3ResourceSlice | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceSlice') | |
| io_k8s_api_resource_v1alpha3_ResourceSliceList: ( | |
| IoK8sApiResourceV1alpha3ResourceSliceList | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceSliceList') | |
| io_k8s_api_resource_v1alpha3_ResourceSliceSpec: ( | |
| IoK8sApiResourceV1alpha3ResourceSliceSpec | |
| ) = Field(..., alias='io.k8s.api.resource.v1alpha3.ResourceSliceSpec') | |
| io_k8s_api_scheduling_v1_PriorityClass: IoK8sApiSchedulingV1PriorityClass = Field( | |
| ..., alias='io.k8s.api.scheduling.v1.PriorityClass' | |
| ) | |
| io_k8s_api_scheduling_v1_PriorityClassList: ( | |
| IoK8sApiSchedulingV1PriorityClassList | |
| ) = Field(..., alias='io.k8s.api.scheduling.v1.PriorityClassList') | |
| io_k8s_api_storage_v1_CSIDriver: IoK8sApiStorageV1CSIDriver = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSIDriver' | |
| ) | |
| io_k8s_api_storage_v1_CSIDriverList: IoK8sApiStorageV1CSIDriverList = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSIDriverList' | |
| ) | |
| io_k8s_api_storage_v1_CSIDriverSpec: IoK8sApiStorageV1CSIDriverSpec = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSIDriverSpec' | |
| ) | |
| io_k8s_api_storage_v1_CSINode: IoK8sApiStorageV1CSINode = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSINode' | |
| ) | |
| io_k8s_api_storage_v1_CSINodeDriver: IoK8sApiStorageV1CSINodeDriver = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSINodeDriver' | |
| ) | |
| io_k8s_api_storage_v1_CSINodeList: IoK8sApiStorageV1CSINodeList = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSINodeList' | |
| ) | |
| io_k8s_api_storage_v1_CSINodeSpec: IoK8sApiStorageV1CSINodeSpec = Field( | |
| ..., alias='io.k8s.api.storage.v1.CSINodeSpec' | |
| ) | |
| io_k8s_api_storage_v1_CSIStorageCapacity: IoK8sApiStorageV1CSIStorageCapacity = ( | |
| Field(..., alias='io.k8s.api.storage.v1.CSIStorageCapacity') | |
| ) | |
| io_k8s_api_storage_v1_CSIStorageCapacityList: ( | |
| IoK8sApiStorageV1CSIStorageCapacityList | |
| ) = Field(..., alias='io.k8s.api.storage.v1.CSIStorageCapacityList') | |
| io_k8s_api_storage_v1_StorageClass: IoK8sApiStorageV1StorageClass = Field( | |
| ..., alias='io.k8s.api.storage.v1.StorageClass' | |
| ) | |
| io_k8s_api_storage_v1_StorageClassList: IoK8sApiStorageV1StorageClassList = Field( | |
| ..., alias='io.k8s.api.storage.v1.StorageClassList' | |
| ) | |
| io_k8s_api_storage_v1_TokenRequest: IoK8sApiStorageV1TokenRequest = Field( | |
| ..., alias='io.k8s.api.storage.v1.TokenRequest' | |
| ) | |
| io_k8s_api_storage_v1_VolumeAttachment: IoK8sApiStorageV1VolumeAttachment = Field( | |
| ..., alias='io.k8s.api.storage.v1.VolumeAttachment' | |
| ) | |
| io_k8s_api_storage_v1_VolumeAttachmentList: ( | |
| IoK8sApiStorageV1VolumeAttachmentList | |
| ) = Field(..., alias='io.k8s.api.storage.v1.VolumeAttachmentList') | |
| io_k8s_api_storage_v1_VolumeAttachmentSource: ( | |
| IoK8sApiStorageV1VolumeAttachmentSource | |
| ) = Field(..., alias='io.k8s.api.storage.v1.VolumeAttachmentSource') | |
| io_k8s_api_storage_v1_VolumeAttachmentSpec: ( | |
| IoK8sApiStorageV1VolumeAttachmentSpec | |
| ) = Field(..., alias='io.k8s.api.storage.v1.VolumeAttachmentSpec') | |
| io_k8s_api_storage_v1_VolumeAttachmentStatus: ( | |
| IoK8sApiStorageV1VolumeAttachmentStatus | |
| ) = Field(..., alias='io.k8s.api.storage.v1.VolumeAttachmentStatus') | |
| io_k8s_api_storage_v1_VolumeError: IoK8sApiStorageV1VolumeError = Field( | |
| ..., alias='io.k8s.api.storage.v1.VolumeError' | |
| ) | |
| io_k8s_api_storage_v1_VolumeNodeResources: IoK8sApiStorageV1VolumeNodeResources = ( | |
| Field(..., alias='io.k8s.api.storage.v1.VolumeNodeResources') | |
| ) | |
| io_k8s_api_storage_v1alpha1_VolumeAttributesClass: ( | |
| IoK8sApiStorageV1alpha1VolumeAttributesClass | |
| ) = Field(..., alias='io.k8s.api.storage.v1alpha1.VolumeAttributesClass') | |
| io_k8s_api_storage_v1alpha1_VolumeAttributesClassList: ( | |
| IoK8sApiStorageV1alpha1VolumeAttributesClassList | |
| ) = Field(..., alias='io.k8s.api.storage.v1alpha1.VolumeAttributesClassList') | |
| io_k8s_api_storage_v1beta1_VolumeAttributesClass: ( | |
| IoK8sApiStorageV1beta1VolumeAttributesClass | |
| ) = Field(..., alias='io.k8s.api.storage.v1beta1.VolumeAttributesClass') | |
| io_k8s_api_storage_v1beta1_VolumeAttributesClassList: ( | |
| IoK8sApiStorageV1beta1VolumeAttributesClassList | |
| ) = Field(..., alias='io.k8s.api.storage.v1beta1.VolumeAttributesClassList') | |
| io_k8s_api_storagemigration_v1alpha1_GroupVersionResource: ( | |
| IoK8sApiStoragemigrationV1alpha1GroupVersionResource | |
| ) = Field(..., alias='io.k8s.api.storagemigration.v1alpha1.GroupVersionResource') | |
| io_k8s_api_storagemigration_v1alpha1_MigrationCondition: ( | |
| IoK8sApiStoragemigrationV1alpha1MigrationCondition | |
| ) = Field(..., alias='io.k8s.api.storagemigration.v1alpha1.MigrationCondition') | |
| io_k8s_api_storagemigration_v1alpha1_StorageVersionMigration: ( | |
| IoK8sApiStoragemigrationV1alpha1StorageVersionMigration | |
| ) = Field(..., alias='io.k8s.api.storagemigration.v1alpha1.StorageVersionMigration') | |
| io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationList: ( | |
| IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationList | |
| ) = Field( | |
| ..., alias='io.k8s.api.storagemigration.v1alpha1.StorageVersionMigrationList' | |
| ) | |
| io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationSpec: ( | |
| IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationSpec | |
| ) = Field( | |
| ..., alias='io.k8s.api.storagemigration.v1alpha1.StorageVersionMigrationSpec' | |
| ) | |
| io_k8s_api_storagemigration_v1alpha1_StorageVersionMigrationStatus: ( | |
| IoK8sApiStoragemigrationV1alpha1StorageVersionMigrationStatus | |
| ) = Field( | |
| ..., alias='io.k8s.api.storagemigration.v1alpha1.StorageVersionMigrationStatus' | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceColumnDefinition: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceColumnDefinition | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceColumnDefinition', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceConversion: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceConversion | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceConversion', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinition: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinition | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinition', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionCondition: IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionCondition = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionCondition', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionList: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionList | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionList', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionNames: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionNames | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionNames', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionSpec: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionSpec | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionSpec', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionStatus: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionStatus | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionStatus', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceDefinitionVersion: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceDefinitionVersion | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceScale: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresourceScale | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceScale', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresourceStatus: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresourceStatus | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresourceStatus', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceSubresources: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceSubresources | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceSubresources', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_CustomResourceValidation: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1CustomResourceValidation | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceValidation', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ExternalDocumentation: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1ExternalDocumentation | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ExternalDocumentation', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSON: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSON | |
| ) = Field( | |
| ..., alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSON' | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaProps: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaProps | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaProps', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrArray: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrArray | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrArray', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrBool: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrBool | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrBool', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_JSONSchemaPropsOrStringArray: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1JSONSchemaPropsOrStringArray | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.JSONSchemaPropsOrStringArray', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_SelectableField: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1SelectableField | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.SelectableField', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ServiceReference: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1ServiceReference | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ServiceReference', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_ValidationRule: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1ValidationRule | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.ValidationRule', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookClientConfig: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1WebhookClientConfig | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookClientConfig', | |
| ) | |
| io_k8s_apiextensions_apiserver_pkg_apis_apiextensions_v1_WebhookConversion: ( | |
| IoK8sApiextensionsApiserverPkgApisApiextensionsV1WebhookConversion | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.WebhookConversion', | |
| ) | |
| io_k8s_apimachinery_pkg_api_resource_Quantity: ( | |
| IoK8sApimachineryPkgApiResourceQuantity | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.api.resource.Quantity') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_APIGroup: ( | |
| IoK8sApimachineryPkgApisMetaV1APIGroup | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.APIGroup') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_APIGroupList: ( | |
| IoK8sApimachineryPkgApisMetaV1APIGroupList | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.APIGroupList') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_APIResource: ( | |
| IoK8sApimachineryPkgApisMetaV1APIResource | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.APIResource') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_APIResourceList: ( | |
| IoK8sApimachineryPkgApisMetaV1APIResourceList | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.APIResourceList') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_APIVersions: ( | |
| IoK8sApimachineryPkgApisMetaV1APIVersions | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.APIVersions') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_Condition: ( | |
| IoK8sApimachineryPkgApisMetaV1Condition | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.Condition') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_DeleteOptions: ( | |
| IoK8sApimachineryPkgApisMetaV1DeleteOptions | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.DeleteOptions') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_FieldSelectorRequirement: ( | |
| IoK8sApimachineryPkgApisMetaV1FieldSelectorRequirement | |
| ) = Field( | |
| ..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.FieldSelectorRequirement' | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_FieldsV1: ( | |
| IoK8sApimachineryPkgApisMetaV1FieldsV1 | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.FieldsV1') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_GroupVersionForDiscovery: ( | |
| IoK8sApimachineryPkgApisMetaV1GroupVersionForDiscovery | |
| ) = Field( | |
| ..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.GroupVersionForDiscovery' | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelector: ( | |
| IoK8sApimachineryPkgApisMetaV1LabelSelector | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_LabelSelectorRequirement: ( | |
| IoK8sApimachineryPkgApisMetaV1LabelSelectorRequirement | |
| ) = Field( | |
| ..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelectorRequirement' | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_ListMeta: ( | |
| IoK8sApimachineryPkgApisMetaV1ListMeta | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.ListMeta') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_ManagedFieldsEntry: ( | |
| IoK8sApimachineryPkgApisMetaV1ManagedFieldsEntry | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.ManagedFieldsEntry') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_MicroTime: ( | |
| IoK8sApimachineryPkgApisMetaV1MicroTime | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.MicroTime') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_ObjectMeta: ( | |
| IoK8sApimachineryPkgApisMetaV1ObjectMeta | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_OwnerReference: ( | |
| IoK8sApimachineryPkgApisMetaV1OwnerReference | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.OwnerReference') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_Patch: IoK8sApimachineryPkgApisMetaV1Patch = ( | |
| Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.Patch') | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_Preconditions: ( | |
| IoK8sApimachineryPkgApisMetaV1Preconditions | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.Preconditions') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_ServerAddressByClientCIDR: ( | |
| IoK8sApimachineryPkgApisMetaV1ServerAddressByClientCIDR | |
| ) = Field( | |
| ..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.ServerAddressByClientCIDR' | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_Status: ( | |
| IoK8sApimachineryPkgApisMetaV1Status | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.Status') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_StatusCause: ( | |
| IoK8sApimachineryPkgApisMetaV1StatusCause | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.StatusCause') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_StatusDetails: ( | |
| IoK8sApimachineryPkgApisMetaV1StatusDetails | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.StatusDetails') | |
| io_k8s_apimachinery_pkg_apis_meta_v1_Time: IoK8sApimachineryPkgApisMetaV1Time = ( | |
| Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.Time') | |
| ) | |
| io_k8s_apimachinery_pkg_apis_meta_v1_WatchEvent: ( | |
| IoK8sApimachineryPkgApisMetaV1WatchEvent | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.apis.meta.v1.WatchEvent') | |
| io_k8s_apimachinery_pkg_runtime_RawExtension: ( | |
| IoK8sApimachineryPkgRuntimeRawExtension | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.runtime.RawExtension') | |
| io_k8s_apimachinery_pkg_util_intstr_IntOrString: ( | |
| IoK8sApimachineryPkgUtilIntstrIntOrString | |
| ) = Field(..., alias='io.k8s.apimachinery.pkg.util.intstr.IntOrString') | |
| io_k8s_apimachinery_pkg_version_Info: IoK8sApimachineryPkgVersionInfo = Field( | |
| ..., alias='io.k8s.apimachinery.pkg.version.Info' | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIService: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1APIService | |
| ) = Field( | |
| ..., alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIService' | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceCondition: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceCondition | |
| ) = Field( | |
| ..., | |
| alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceCondition', | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceList: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceList | |
| ) = Field( | |
| ..., alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceList' | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceSpec: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceSpec | |
| ) = Field( | |
| ..., alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceSpec' | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_APIServiceStatus: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1APIServiceStatus | |
| ) = Field( | |
| ..., alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.APIServiceStatus' | |
| ) | |
| io_k8s_kube_aggregator_pkg_apis_apiregistration_v1_ServiceReference: ( | |
| IoK8sKubeAggregatorPkgApisApiregistrationV1ServiceReference | |
| ) = Field( | |
| ..., alias='io.k8s.kube-aggregator.pkg.apis.apiregistration.v1.ServiceReference' | |
| ) | |
| class Info(BaseModel): | |
| title: str | |
| version: str | |
| class AllowWatchBookmarksHC2hJtJ(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class Schema1(BaseModel): | |
| field_ref: str = Field(..., alias='$ref') | |
| class Body2Y1dVQaQ(BaseModel): | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| schema_: Schema1 = Field(..., alias='schema') | |
| class Body78PwaGsr(BaseModel): | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| required: bool | |
| schema_: Schema1 = Field(..., alias='schema') | |
| class CommandPy3eQybp(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class Container1GeXxFDC(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class ContainerQEJ3nR(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class ContainerI5dOmRiM(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class ContinueQfD61s0i(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class FieldManager7c6nTn1T(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class FieldManagerQy4HdaTW(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class FieldSelectorXIcQKXFG(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class Follow9OIXh2R(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class ForceTOGGb0Yi(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class GracePeriodSecondsK5HaBOS(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class InsecureSkipTLSVerifyBackendGM00jVbe(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class LabelSelector5Zw57w4C(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class Limit1NfNmdNH(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class LimitBytesZwd1RXuc(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class LogpathNoq7euwC(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| required: bool | |
| type: str | |
| uniqueItems: bool | |
| class NamespaceVgWSWtn3(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| required: bool | |
| type: str | |
| uniqueItems: bool | |
| class OrphanDependentsURB25kX5(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class PathQCf0eosM(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class PathOPbzgLUj(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class PathRFDtV0x9(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class PathZ6Ciiujn(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| required: bool | |
| type: str | |
| uniqueItems: bool | |
| class Ports91KROJmm(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |
| type: str | |
| uniqueItems: bool | |
| class PrettyTJGM1Ng(BaseModel): | |
| description: str | |
| in_: str = Field(..., alias='in') | |
| name: str | |