CustomResourceDefinitionSpec describes how a user wants their resource to appear
| Name | Type | Description | Notes |
|---|---|---|---|
| conversion | V1CustomResourceConversion | [optional] | |
| group | str | group is the API group of the defined custom resource. The custom resources are served under `/apis/<group>/...`. Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`). | |
| names | V1CustomResourceDefinitionNames | ||
| preserve_unknown_fields | bool | 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. | [optional] |
| scope | str | scope indicates whether the defined custom resource is cluster- or namespace-scoped. Allowed values are `Cluster` and `Namespaced`. | |
| versions | List[V1CustomResourceDefinitionVersion] | 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. |
from kubernetes.client.models.v1_custom_resource_definition_spec import V1CustomResourceDefinitionSpec
# TODO update the JSON string below
json = "{}"
# create an instance of V1CustomResourceDefinitionSpec from a JSON string
v1_custom_resource_definition_spec_instance = V1CustomResourceDefinitionSpec.from_json(json)
# print the JSON string representation of the object
print(V1CustomResourceDefinitionSpec.to_json())
# convert the object into a dict
v1_custom_resource_definition_spec_dict = v1_custom_resource_definition_spec_instance.to_dict()
# create an instance of V1CustomResourceDefinitionSpec from a dict
v1_custom_resource_definition_spec_from_dict = V1CustomResourceDefinitionSpec.from_dict(v1_custom_resource_definition_spec_dict)