io.k8s.api.core.v1.SleepAction 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.Long;
/**
* SleepAction describes a "sleep" action.
*/
public class SleepAction {
public Long seconds;
/**
* Seconds is the number of seconds to sleep.
*/
public SleepAction seconds(Long seconds) {
this.seconds = seconds;
return this;
}
public static SleepAction sleepAction() {
return new SleepAction();
}
}