Package io.fabric8.openshift.api.model
Class StageInfo
- java.lang.Object
-
- io.fabric8.openshift.api.model.StageInfo
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<StageInfoBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class StageInfo extends Object implements io.fabric8.kubernetes.api.builder.Editable<StageInfoBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
StageInfo contains details about a build stage.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StageInfoBuilderedit()Map<String,Object>getAdditionalProperties()LonggetDurationMilliseconds()durationMilliseconds identifies how long the stage took to complete in milliseconds.StringgetName()name is a unique identifier for each build stage that occurs.StringgetStartTime()StageInfo contains details about a build stage.List<StepInfo>getSteps()steps contains details about each step that occurs during a build stage including start time and duration in milliseconds.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetDurationMilliseconds(Long durationMilliseconds)durationMilliseconds identifies how long the stage took to complete in milliseconds.voidsetName(String name)name is a unique identifier for each build stage that occurs.voidsetStartTime(String startTime)StageInfo contains details about a build stage.voidsetSteps(List<StepInfo> steps)steps contains details about each step that occurs during a build stage including start time and duration in milliseconds.StageInfoBuildertoBuilder()
-
-
-
Method Detail
-
getDurationMilliseconds
public Long getDurationMilliseconds()
durationMilliseconds identifies how long the stage took to complete in milliseconds. Note: the duration of a stage can exceed the sum of the duration of the steps within the stage as not all actions are accounted for in explicit build steps.
-
setDurationMilliseconds
public void setDurationMilliseconds(Long durationMilliseconds)
durationMilliseconds identifies how long the stage took to complete in milliseconds. Note: the duration of a stage can exceed the sum of the duration of the steps within the stage as not all actions are accounted for in explicit build steps.
-
getName
public String getName()
name is a unique identifier for each build stage that occurs.
-
setName
public void setName(String name)
name is a unique identifier for each build stage that occurs.
-
getStartTime
public String getStartTime()
StageInfo contains details about a build stage.
-
setStartTime
public void setStartTime(String startTime)
StageInfo contains details about a build stage.
-
getSteps
public List<StepInfo> getSteps()
steps contains details about each step that occurs during a build stage including start time and duration in milliseconds.
-
setSteps
public void setSteps(List<StepInfo> steps)
steps contains details about each step that occurs during a build stage including start time and duration in milliseconds.
-
edit
public StageInfoBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<StageInfoBuilder>
-
toBuilder
public StageInfoBuilder toBuilder()
-
-