Package io.fabric8.openshift.api.model
Class ProjectStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.ProjectStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ProjectStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ProjectStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<ProjectStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ProjectStatus is information about the current status of a Project- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProjectStatus()No args constructor for use in serializationProjectStatus(List<io.fabric8.kubernetes.api.model.NamespaceCondition> conditions, String phase)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ProjectStatusBuilderedit()Map<String,Object>getAdditionalProperties()List<io.fabric8.kubernetes.api.model.NamespaceCondition>getConditions()Represents the latest available observations of the project current state.StringgetPhase()phase is the current lifecycle phase of the projectvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetConditions(List<io.fabric8.kubernetes.api.model.NamespaceCondition> conditions)Represents the latest available observations of the project current state.voidsetPhase(String phase)phase is the current lifecycle phase of the projectProjectStatusBuildertoBuilder()
-
-
-
Method Detail
-
getConditions
public List<io.fabric8.kubernetes.api.model.NamespaceCondition> getConditions()
Represents the latest available observations of the project current state.
-
setConditions
public void setConditions(List<io.fabric8.kubernetes.api.model.NamespaceCondition> conditions)
Represents the latest available observations of the project current state.
-
getPhase
public String getPhase()
phase is the current lifecycle phase of the projectPossible enum values:
- `"Active"` means the namespace is available for use in the system
- `"Terminating"` means the namespace is undergoing graceful termination
-
setPhase
public void setPhase(String phase)
phase is the current lifecycle phase of the projectPossible enum values:
- `"Active"` means the namespace is available for use in the system
- `"Terminating"` means the namespace is undergoing graceful termination
-
edit
public ProjectStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ProjectStatusBuilder>
-
toBuilder
public ProjectStatusBuilder toBuilder()
-
-