Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 2.04 KB

File metadata and controls

31 lines (24 loc) · 2.04 KB

V1CustomResourceDefinitionStatus

CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition

Properties

Name Type Description Notes
accepted_names V1CustomResourceDefinitionNames [optional]
conditions List[V1CustomResourceDefinitionCondition] conditions indicate state for particular aspects of a CustomResourceDefinition [optional]
observed_generation int The generation observed by the CRD controller. [optional]
stored_versions List[str] storedVersions lists all versions of CustomResources that were ever persisted. Tracking these versions allows a migration path for stored versions in etcd. The field is mutable so a migration controller can finish a migration to another version (ensuring no old objects are left in storage), and then remove the rest of the versions from this list. Versions may not be removed from `spec.versions` while they exist in this list. [optional]

Example

from kubernetes.client.models.v1_custom_resource_definition_status import V1CustomResourceDefinitionStatus

# TODO update the JSON string below
json = "{}"
# create an instance of V1CustomResourceDefinitionStatus from a JSON string
v1_custom_resource_definition_status_instance = V1CustomResourceDefinitionStatus.from_json(json)
# print the JSON string representation of the object
print(V1CustomResourceDefinitionStatus.to_json())

# convert the object into a dict
v1_custom_resource_definition_status_dict = v1_custom_resource_definition_status_instance.to_dict()
# create an instance of V1CustomResourceDefinitionStatus from a dict
v1_custom_resource_definition_status_from_dict = V1CustomResourceDefinitionStatus.from_dict(v1_custom_resource_definition_status_dict)

[Back to Model list] [Back to API list] [Back to README]