Class CustomResourceDefinitionStatus
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.apiextensions.v1.CustomResourceDefinitionStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<CustomResourceDefinitionStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class CustomResourceDefinitionStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<CustomResourceDefinitionStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description CustomResourceDefinitionStatus()No args constructor for use in serializationCustomResourceDefinitionStatus(CustomResourceDefinitionNames acceptedNames, List<CustomResourceDefinitionCondition> conditions, List<String> storedVersions)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CustomResourceDefinitionStatusBuilderedit()CustomResourceDefinitionNamesgetAcceptedNames()CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinitionMap<String,Object>getAdditionalProperties()List<CustomResourceDefinitionCondition>getConditions()conditions indicate state for particular aspects of a CustomResourceDefinitionList<String>getStoredVersions()storedVersions lists all versions of CustomResources that were ever persisted.voidsetAcceptedNames(CustomResourceDefinitionNames acceptedNames)CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinitionvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetConditions(List<CustomResourceDefinitionCondition> conditions)conditions indicate state for particular aspects of a CustomResourceDefinitionvoidsetStoredVersions(List<String> storedVersions)storedVersions lists all versions of CustomResources that were ever persisted.CustomResourceDefinitionStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
CustomResourceDefinitionStatus
public CustomResourceDefinitionStatus()
No args constructor for use in serialization
-
CustomResourceDefinitionStatus
public CustomResourceDefinitionStatus(CustomResourceDefinitionNames acceptedNames, List<CustomResourceDefinitionCondition> conditions, List<String> storedVersions)
-
-
Method Detail
-
getAcceptedNames
public CustomResourceDefinitionNames getAcceptedNames()
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition
-
setAcceptedNames
public void setAcceptedNames(CustomResourceDefinitionNames acceptedNames)
CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition
-
getConditions
public List<CustomResourceDefinitionCondition> getConditions()
conditions indicate state for particular aspects of a CustomResourceDefinition
-
setConditions
public void setConditions(List<CustomResourceDefinitionCondition> conditions)
conditions indicate state for particular aspects of a CustomResourceDefinition
-
getStoredVersions
public List<String> getStoredVersions()
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.
-
setStoredVersions
public void setStoredVersions(List<String> storedVersions)
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.
-
edit
public CustomResourceDefinitionStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<CustomResourceDefinitionStatusBuilder>
-
toBuilder
public CustomResourceDefinitionStatusBuilder toBuilder()
-
-