Class MachineOSBuildStatus
- java.lang.Object
-
- io.fabric8.openshift.api.model.machineconfiguration.v1.MachineOSBuildStatus
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<MachineOSBuildStatusBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class MachineOSBuildStatus extends Object implements io.fabric8.kubernetes.api.builder.Editable<MachineOSBuildStatusBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
MachineOSBuildStatus describes the state of a build and other helpful information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MachineOSBuildStatus()No args constructor for use in serializationMachineOSBuildStatus(String buildEnd, String buildStart, MachineOSBuilderReference builder, List<io.fabric8.kubernetes.api.model.Condition> conditions, String digestedImagePushSpec, List<ObjectReference> relatedObjects)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MachineOSBuildStatusBuilderedit()Map<String,Object>getAdditionalProperties()StringgetBuildEnd()MachineOSBuildStatus describes the state of a build and other helpful information.MachineOSBuilderReferencegetBuilder()MachineOSBuildStatus describes the state of a build and other helpful information.StringgetBuildStart()MachineOSBuildStatus describes the state of a build and other helpful information.List<io.fabric8.kubernetes.api.model.Condition>getConditions()conditions are state related conditions for the build.StringgetDigestedImagePushSpec()digestedImagePushSpec describes the fully qualified push spec produced by this build.List<ObjectReference>getRelatedObjects()relatedObjects is a list of references to ephemeral objects such as ConfigMaps or Secrets that are meant to be consumed while the build process runs.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetBuildEnd(String buildEnd)MachineOSBuildStatus describes the state of a build and other helpful information.voidsetBuilder(MachineOSBuilderReference builder)MachineOSBuildStatus describes the state of a build and other helpful information.voidsetBuildStart(String buildStart)MachineOSBuildStatus describes the state of a build and other helpful information.voidsetConditions(List<io.fabric8.kubernetes.api.model.Condition> conditions)conditions are state related conditions for the build.voidsetDigestedImagePushSpec(String digestedImagePushSpec)digestedImagePushSpec describes the fully qualified push spec produced by this build.voidsetRelatedObjects(List<ObjectReference> relatedObjects)relatedObjects is a list of references to ephemeral objects such as ConfigMaps or Secrets that are meant to be consumed while the build process runs.MachineOSBuildStatusBuildertoBuilder()
-
-
-
Constructor Detail
-
MachineOSBuildStatus
public MachineOSBuildStatus()
No args constructor for use in serialization
-
MachineOSBuildStatus
public MachineOSBuildStatus(String buildEnd, String buildStart, MachineOSBuilderReference builder, List<io.fabric8.kubernetes.api.model.Condition> conditions, String digestedImagePushSpec, List<ObjectReference> relatedObjects)
-
-
Method Detail
-
getBuildEnd
public String getBuildEnd()
MachineOSBuildStatus describes the state of a build and other helpful information.
-
setBuildEnd
public void setBuildEnd(String buildEnd)
MachineOSBuildStatus describes the state of a build and other helpful information.
-
getBuildStart
public String getBuildStart()
MachineOSBuildStatus describes the state of a build and other helpful information.
-
setBuildStart
public void setBuildStart(String buildStart)
MachineOSBuildStatus describes the state of a build and other helpful information.
-
getBuilder
public MachineOSBuilderReference getBuilder()
MachineOSBuildStatus describes the state of a build and other helpful information.
-
setBuilder
public void setBuilder(MachineOSBuilderReference builder)
MachineOSBuildStatus describes the state of a build and other helpful information.
-
getConditions
public List<io.fabric8.kubernetes.api.model.Condition> getConditions()
conditions are state related conditions for the build. Valid types are: Prepared, Building, Failed, Interrupted, and Succeeded. Once a Build is marked as Failed, Interrupted or Succeeded, no future conditions can be set.
-
setConditions
public void setConditions(List<io.fabric8.kubernetes.api.model.Condition> conditions)
conditions are state related conditions for the build. Valid types are: Prepared, Building, Failed, Interrupted, and Succeeded. Once a Build is marked as Failed, Interrupted or Succeeded, no future conditions can be set.
-
getDigestedImagePushSpec
public String getDigestedImagePushSpec()
digestedImagePushSpec describes the fully qualified push spec produced by this build. The format of the push spec is: host[:port][/namespace]/name@sha256:<digest>, where the digest must be 64 characters long, and consist only of lowercase hexadecimal characters, a-f and 0-9. The length of the whole spec must be between 1 to 447 characters.
-
setDigestedImagePushSpec
public void setDigestedImagePushSpec(String digestedImagePushSpec)
digestedImagePushSpec describes the fully qualified push spec produced by this build. The format of the push spec is: host[:port][/namespace]/name@sha256:<digest>, where the digest must be 64 characters long, and consist only of lowercase hexadecimal characters, a-f and 0-9. The length of the whole spec must be between 1 to 447 characters.
-
getRelatedObjects
public List<ObjectReference> getRelatedObjects()
relatedObjects is a list of references to ephemeral objects such as ConfigMaps or Secrets that are meant to be consumed while the build process runs. After a successful build or when this MachineOSBuild is deleted, these ephemeral objects will be removed. In the event of a failed build, the objects will remain until the build is removed to allow for inspection.
-
setRelatedObjects
public void setRelatedObjects(List<ObjectReference> relatedObjects)
relatedObjects is a list of references to ephemeral objects such as ConfigMaps or Secrets that are meant to be consumed while the build process runs. After a successful build or when this MachineOSBuild is deleted, these ephemeral objects will be removed. In the event of a failed build, the objects will remain until the build is removed to allow for inspection.
-
edit
public MachineOSBuildStatusBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<MachineOSBuildStatusBuilder>
-
toBuilder
public MachineOSBuildStatusBuilder toBuilder()
-
-