Package io.fabric8.kubernetes.api.model
Class ContainerStateTerminated
- java.lang.Object
-
- io.fabric8.kubernetes.api.model.ContainerStateTerminated
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ContainerStateTerminatedBuilder>
,KubernetesResource
,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ContainerStateTerminated extends Object implements io.fabric8.kubernetes.api.builder.Editable<ContainerStateTerminatedBuilder>, KubernetesResource
ContainerStateTerminated is a terminated state of a container.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContainerStateTerminated()
No args constructor for use in serializationContainerStateTerminated(String containerID, Integer exitCode, String finishedAt, String message, String reason, Integer signal, String startedAt)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContainerStateTerminatedBuilder
edit()
Map<String,Object>
getAdditionalProperties()
String
getContainerID()
Container's ID in the format '<type>://<container_id>'Integer
getExitCode()
Exit status from the last termination of the containerString
getFinishedAt()
ContainerStateTerminated is a terminated state of a container.String
getMessage()
Message regarding the last termination of the containerString
getReason()
(brief) reason from the last termination of the containerInteger
getSignal()
Signal from the last termination of the containerString
getStartedAt()
ContainerStateTerminated is a terminated state of a container.void
setAdditionalProperties(Map<String,Object> additionalProperties)
void
setAdditionalProperty(String name, Object value)
void
setContainerID(String containerID)
Container's ID in the format '<type>://<container_id>'void
setExitCode(Integer exitCode)
Exit status from the last termination of the containervoid
setFinishedAt(String finishedAt)
ContainerStateTerminated is a terminated state of a container.void
setMessage(String message)
Message regarding the last termination of the containervoid
setReason(String reason)
(brief) reason from the last termination of the containervoid
setSignal(Integer signal)
Signal from the last termination of the containervoid
setStartedAt(String startedAt)
ContainerStateTerminated is a terminated state of a container.ContainerStateTerminatedBuilder
toBuilder()
-
-
-
Method Detail
-
getContainerID
public String getContainerID()
Container's ID in the format '<type>://<container_id>'
-
setContainerID
public void setContainerID(String containerID)
Container's ID in the format '<type>://<container_id>'
-
getExitCode
public Integer getExitCode()
Exit status from the last termination of the container
-
setExitCode
public void setExitCode(Integer exitCode)
Exit status from the last termination of the container
-
getFinishedAt
public String getFinishedAt()
ContainerStateTerminated is a terminated state of a container.
-
setFinishedAt
public void setFinishedAt(String finishedAt)
ContainerStateTerminated is a terminated state of a container.
-
getMessage
public String getMessage()
Message regarding the last termination of the container
-
setMessage
public void setMessage(String message)
Message regarding the last termination of the container
-
getReason
public String getReason()
(brief) reason from the last termination of the container
-
setReason
public void setReason(String reason)
(brief) reason from the last termination of the container
-
getSignal
public Integer getSignal()
Signal from the last termination of the container
-
setSignal
public void setSignal(Integer signal)
Signal from the last termination of the container
-
getStartedAt
public String getStartedAt()
ContainerStateTerminated is a terminated state of a container.
-
setStartedAt
public void setStartedAt(String startedAt)
ContainerStateTerminated is a terminated state of a container.
-
edit
public ContainerStateTerminatedBuilder edit()
- Specified by:
edit
in interfaceio.fabric8.kubernetes.api.builder.Editable<ContainerStateTerminatedBuilder>
-
toBuilder
public ContainerStateTerminatedBuilder toBuilder()
-
-