Class GenerationHistory
- java.lang.Object
-
- io.fabric8.openshift.api.model.operator.v1alpha1.GenerationHistory
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<GenerationHistoryBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class GenerationHistory extends Object implements io.fabric8.kubernetes.api.builder.Editable<GenerationHistoryBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
GenerationHistory keeps track of the generation for a given resource so that decisions about forced updated can be made. DEPRECATED: Use fields in v1.GenerationStatus instead- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description GenerationHistory()No args constructor for use in serializationGenerationHistory(String group, Long lastGeneration, String name, String namespace, String resource)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description GenerationHistoryBuilderedit()Map<String,Object>getAdditionalProperties()StringgetGroup()group is the group of the thing you're trackingLonggetLastGeneration()lastGeneration is the last generation of the workload controller involvedStringgetName()name is the name of the thing you're trackingStringgetNamespace()namespace is where the thing you're tracking isStringgetResource()resource is the resource type of the thing you're trackingvoidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetGroup(String group)group is the group of the thing you're trackingvoidsetLastGeneration(Long lastGeneration)lastGeneration is the last generation of the workload controller involvedvoidsetName(String name)name is the name of the thing you're trackingvoidsetNamespace(String namespace)namespace is where the thing you're tracking isvoidsetResource(String resource)resource is the resource type of the thing you're trackingGenerationHistoryBuildertoBuilder()
-
-
-
Method Detail
-
getGroup
public String getGroup()
group is the group of the thing you're tracking
-
setGroup
public void setGroup(String group)
group is the group of the thing you're tracking
-
getLastGeneration
public Long getLastGeneration()
lastGeneration is the last generation of the workload controller involved
-
setLastGeneration
public void setLastGeneration(Long lastGeneration)
lastGeneration is the last generation of the workload controller involved
-
getName
public String getName()
name is the name of the thing you're tracking
-
setName
public void setName(String name)
name is the name of the thing you're tracking
-
getNamespace
public String getNamespace()
namespace is where the thing you're tracking is
-
setNamespace
public void setNamespace(String namespace)
namespace is where the thing you're tracking is
-
getResource
public String getResource()
resource is the resource type of the thing you're tracking
-
setResource
public void setResource(String resource)
resource is the resource type of the thing you're tracking
-
edit
public GenerationHistoryBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<GenerationHistoryBuilder>
-
toBuilder
public GenerationHistoryBuilder toBuilder()
-
-