kubernetes_asyncio.client.models.v1_custom_resource_definition_spec module

Kubernetes

No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501

The version of the OpenAPI document: v1.34.3 Generated by: https://openapi-generator.tech

class kubernetes_asyncio.client.models.v1_custom_resource_definition_spec.V1CustomResourceDefinitionSpec(conversion=None, group=None, names=None, preserve_unknown_fields=None, scope=None, versions=None, local_vars_configuration=None)

Bases: object

NOTE: This class is auto generated by OpenAPI Generator. Ref: https://openapi-generator.tech

Do not edit the class manually.

attribute_map = {'conversion': 'conversion', 'group': 'group', 'names': 'names', 'preserve_unknown_fields': 'preserveUnknownFields', 'scope': 'scope', 'versions': 'versions'}
property conversion

Gets the conversion of this V1CustomResourceDefinitionSpec. # noqa: E501

Returns:

The conversion of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

V1CustomResourceConversion

property group

Gets the group of this V1CustomResourceDefinitionSpec. # noqa: E501

group is the API group of the defined custom resource. The custom resources are served under /apis/<group>/…. Must match the name of the CustomResourceDefinition (in the form <names.plural>.<group>). # noqa: E501

Returns:

The group of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

str

property names

Gets the names of this V1CustomResourceDefinitionSpec. # noqa: E501

Returns:

The names of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

V1CustomResourceDefinitionNames

openapi_types = {'conversion': 'V1CustomResourceConversion', 'group': 'str', 'names': 'V1CustomResourceDefinitionNames', 'preserve_unknown_fields': 'bool', 'scope': 'str', 'versions': 'list[V1CustomResourceDefinitionVersion]'}
property preserve_unknown_fields

Gets the preserve_unknown_fields of this V1CustomResourceDefinitionSpec. # noqa: E501

preserveUnknownFields indicates that object fields which are not specified in the OpenAPI schema should be preserved when persisting to storage. apiVersion, kind, metadata and known fields inside metadata are always preserved. This field is deprecated in favor of setting x-preserve-unknown-fields to true in spec.versions[*].schema.openAPIV3Schema. See https://kubernetes.io/docs/tasks/extend-kubernetes/custom-resources/custom-resource-definitions/#field-pruning for details. # noqa: E501

Returns:

The preserve_unknown_fields of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

bool

property scope

Gets the scope of this V1CustomResourceDefinitionSpec. # noqa: E501

scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are Cluster and Namespaced. # noqa: E501

Returns:

The scope of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

str

to_dict(serialize=False)

Returns the model properties as a dict

to_str()

Returns the string representation of the model

property versions

Gets the versions of this V1CustomResourceDefinitionSpec. # noqa: E501

versions is the list of all API versions of the defined custom resource. Version names are used to compute the order in which served versions are listed in API discovery. If the version string is “kube-like”, it will sort above non “kube-like” version strings, which are ordered lexicographically. “Kube-like” versions start with a “v”, then are followed by a number (the major version), then optionally the string “alpha” or “beta” and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10. # noqa: E501

Returns:

The versions of this V1CustomResourceDefinitionSpec. # noqa: E501

Return type:

list[V1CustomResourceDefinitionVersion]