All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.core.v1.SleepAction Maven / Gradle / Ivy

The newest version!
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy