Class NodeStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.operator.v1alpha1.NodeStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<NodeStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class NodeStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<NodeStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
NodeStatus provides information about the current state of a particular node managed by this operator. Deprecated: Use v1.NodeStatus instead- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeStatus()No args constructor for use in serializationNodeStatus(Integer currentDeploymentGeneration, List<String> lastFailedDeploymentErrors, Integer lastFailedDeploymentGeneration, String nodeName, Integer targetDeploymentGeneration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description NodeStatusBuilderedit()Map<String,Object>getAdditionalProperties()IntegergetCurrentDeploymentGeneration()currentDeploymentGeneration is the generation of the most recently successful deploymentList<String>getLastFailedDeploymentErrors()lastFailedDeploymentGenerationErrors is a list of the errors during the failed deployment referenced in lastFailedDeploymentGenerationIntegergetLastFailedDeploymentGeneration()lastFailedDeploymentGeneration is the generation of the deployment we tried and failed to deploy.StringgetNodeName()nodeName is the name of the nodeIntegergetTargetDeploymentGeneration()targetDeploymentGeneration is the generation of the deployment we're trying to applyvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetCurrentDeploymentGeneration(Integer currentDeploymentGeneration)currentDeploymentGeneration is the generation of the most recently successful deploymentvoidsetLastFailedDeploymentErrors(List<String> lastFailedDeploymentErrors)lastFailedDeploymentGenerationErrors is a list of the errors during the failed deployment referenced in lastFailedDeploymentGenerationvoidsetLastFailedDeploymentGeneration(Integer lastFailedDeploymentGeneration)lastFailedDeploymentGeneration is the generation of the deployment we tried and failed to deploy.voidsetNodeName(String nodeName)nodeName is the name of the nodevoidsetTargetDeploymentGeneration(Integer targetDeploymentGeneration)targetDeploymentGeneration is the generation of the deployment we're trying to applyNodeStatusBuildertoBuilder()
-
-
-
Method Detail
-
getCurrentDeploymentGeneration
public Integer getCurrentDeploymentGeneration()
currentDeploymentGeneration is the generation of the most recently successful deployment
-
setCurrentDeploymentGeneration
public void setCurrentDeploymentGeneration(Integer currentDeploymentGeneration)
currentDeploymentGeneration is the generation of the most recently successful deployment
-
getLastFailedDeploymentErrors
public List<String> getLastFailedDeploymentErrors()
lastFailedDeploymentGenerationErrors is a list of the errors during the failed deployment referenced in lastFailedDeploymentGeneration
-
setLastFailedDeploymentErrors
public void setLastFailedDeploymentErrors(List<String> lastFailedDeploymentErrors)
lastFailedDeploymentGenerationErrors is a list of the errors during the failed deployment referenced in lastFailedDeploymentGeneration
-
getLastFailedDeploymentGeneration
public Integer getLastFailedDeploymentGeneration()
lastFailedDeploymentGeneration is the generation of the deployment we tried and failed to deploy.
-
setLastFailedDeploymentGeneration
public void setLastFailedDeploymentGeneration(Integer lastFailedDeploymentGeneration)
lastFailedDeploymentGeneration is the generation of the deployment we tried and failed to deploy.
-
getNodeName
public String getNodeName()
nodeName is the name of the node
-
setNodeName
public void setNodeName(String nodeName)
nodeName is the name of the node
-
getTargetDeploymentGeneration
public Integer getTargetDeploymentGeneration()
targetDeploymentGeneration is the generation of the deployment we're trying to apply
-
setTargetDeploymentGeneration
public void setTargetDeploymentGeneration(Integer targetDeploymentGeneration)
targetDeploymentGeneration is the generation of the deployment we're trying to apply
-
edit
public NodeStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<NodeStatusBuilder>
-
toBuilder
public NodeStatusBuilder toBuilder()
-
-