Class LastOperation
- java.lang.Object
-
- io.fabric8.openshift.api.model.machine.v1beta1.LastOperation
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<LastOperationBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class LastOperation extends Object implements io.fabric8.kubernetes.api.builder.Editable<LastOperationBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
LastOperation represents the detail of the last performed operation on the MachineObject.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LastOperation()No args constructor for use in serializationLastOperation(String description, String lastUpdated, String state, String type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LastOperationBuilderedit()Map<String,Object>getAdditionalProperties()StringgetDescription()description is the human-readable description of the last operation.StringgetLastUpdated()LastOperation represents the detail of the last performed operation on the MachineObject.StringgetState()state is the current status of the last performed operation.StringgetType()type is the type of operation which was last performed.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDescription(String description)description is the human-readable description of the last operation.voidsetLastUpdated(String lastUpdated)LastOperation represents the detail of the last performed operation on the MachineObject.voidsetState(String state)state is the current status of the last performed operation.voidsetType(String type)type is the type of operation which was last performed.LastOperationBuildertoBuilder()
-
-
-
Method Detail
-
getDescription
public String getDescription()
description is the human-readable description of the last operation.
-
setDescription
public void setDescription(String description)
description is the human-readable description of the last operation.
-
getLastUpdated
public String getLastUpdated()
LastOperation represents the detail of the last performed operation on the MachineObject.
-
setLastUpdated
public void setLastUpdated(String lastUpdated)
LastOperation represents the detail of the last performed operation on the MachineObject.
-
getState
public String getState()
state is the current status of the last performed operation. E.g. Processing, Failed, Successful etc
-
setState
public void setState(String state)
state is the current status of the last performed operation. E.g. Processing, Failed, Successful etc
-
getType
public String getType()
type is the type of operation which was last performed. E.g. Create, Delete, Update etc
-
setType
public void setType(String type)
type is the type of operation which was last performed. E.g. Create, Delete, Update etc
-
edit
public LastOperationBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<LastOperationBuilder>
-
toBuilder
public LastOperationBuilder toBuilder()
-
-