Class MachineConfigNodeStatusPinnedImageSet
- java.lang.Object
-
- io.fabric8.openshift.api.model.machineconfiguration.v1.MachineConfigNodeStatusPinnedImageSet
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<MachineConfigNodeStatusPinnedImageSetBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class MachineConfigNodeStatusPinnedImageSet extends Object implements io.fabric8.kubernetes.api.builder.Editable<MachineConfigNodeStatusPinnedImageSetBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
MachineConfigNodeStatusPinnedImageSet holds information about the current, desired, and failed pinned image sets for the observed machine config node.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MachineConfigNodeStatusPinnedImageSet()No args constructor for use in serializationMachineConfigNodeStatusPinnedImageSet(Integer currentGeneration, Integer desiredGeneration, Integer lastFailedGeneration, String lastFailedGenerationError, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MachineConfigNodeStatusPinnedImageSetBuilderedit()Map<String,Object>getAdditionalProperties()IntegergetCurrentGeneration()currentGeneration is the generation of the pinned image set that has most recently been successfully pulled and pinned on this node.IntegergetDesiredGeneration()desiredGeneration is the generation of the pinned image set that is targeted to be pulled and pinned on this node.IntegergetLastFailedGeneration()lastFailedGeneration is the generation of the most recent pinned image set that failed to be pulled and pinned on this node.StringgetLastFailedGenerationError()lastFailedGenerationError is the error explaining why the desired images failed to be pulled and pinned.StringgetName()name is the name of the pinned image set.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetCurrentGeneration(Integer currentGeneration)currentGeneration is the generation of the pinned image set that has most recently been successfully pulled and pinned on this node.voidsetDesiredGeneration(Integer desiredGeneration)desiredGeneration is the generation of the pinned image set that is targeted to be pulled and pinned on this node.voidsetLastFailedGeneration(Integer lastFailedGeneration)lastFailedGeneration is the generation of the most recent pinned image set that failed to be pulled and pinned on this node.voidsetLastFailedGenerationError(String lastFailedGenerationError)lastFailedGenerationError is the error explaining why the desired images failed to be pulled and pinned.voidsetName(String name)name is the name of the pinned image set.MachineConfigNodeStatusPinnedImageSetBuildertoBuilder()
-
-
-
Method Detail
-
getCurrentGeneration
public Integer getCurrentGeneration()
currentGeneration is the generation of the pinned image set that has most recently been successfully pulled and pinned on this node.
-
setCurrentGeneration
public void setCurrentGeneration(Integer currentGeneration)
currentGeneration is the generation of the pinned image set that has most recently been successfully pulled and pinned on this node.
-
getDesiredGeneration
public Integer getDesiredGeneration()
desiredGeneration is the generation of the pinned image set that is targeted to be pulled and pinned on this node.
-
setDesiredGeneration
public void setDesiredGeneration(Integer desiredGeneration)
desiredGeneration is the generation of the pinned image set that is targeted to be pulled and pinned on this node.
-
getLastFailedGeneration
public Integer getLastFailedGeneration()
lastFailedGeneration is the generation of the most recent pinned image set that failed to be pulled and pinned on this node.
-
setLastFailedGeneration
public void setLastFailedGeneration(Integer lastFailedGeneration)
lastFailedGeneration is the generation of the most recent pinned image set that failed to be pulled and pinned on this node.
-
getLastFailedGenerationError
public String getLastFailedGenerationError()
lastFailedGenerationError is the error explaining why the desired images failed to be pulled and pinned. The error is an empty string if the image pull and pin is successful.
-
setLastFailedGenerationError
public void setLastFailedGenerationError(String lastFailedGenerationError)
lastFailedGenerationError is the error explaining why the desired images failed to be pulled and pinned. The error is an empty string if the image pull and pin is successful.
-
getName
public String getName()
name is the name of the pinned image set. Must be a lowercase RFC-1123 subdomain name (https://tools.ietf.org/html/rfc1123) consisting of only lowercase alphanumeric characters, hyphens (-), and periods (.), and must start and end with an alphanumeric character, and be at most 253 characters in length.
-
setName
public void setName(String name)
name is the name of the pinned image set. Must be a lowercase RFC-1123 subdomain name (https://tools.ietf.org/html/rfc1123) consisting of only lowercase alphanumeric characters, hyphens (-), and periods (.), and must start and end with an alphanumeric character, and be at most 253 characters in length.
-
edit
public MachineConfigNodeStatusPinnedImageSetBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<MachineConfigNodeStatusPinnedImageSetBuilder>
-
toBuilder
public MachineConfigNodeStatusPinnedImageSetBuilder toBuilder()
-
-