![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.ContainerStateRunning Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
package io.k8s.api.core.v1;
import java.lang.String;
/**
* ContainerStateRunning is a running state of a container.
*/
public class ContainerStateRunning {
public String startedAt;
/**
* Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
*/
public ContainerStateRunning startedAt(String startedAt) {
this.startedAt = startedAt;
return this;
}
public static ContainerStateRunning containerStateRunning() {
return new ContainerStateRunning();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy