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

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

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.core.v1;

import java.lang.String;

/**
 * ContainerStateWaiting is a waiting state of a container.
 */
public class ContainerStateWaiting {
  public String message;

  public String reason;

  /**
   * Message regarding why the container is not yet running.
   */
  public ContainerStateWaiting message(String message) {
    this.message = message;
    return this;
  }

  /**
   * (brief) reason the container is not yet running.
   */
  public ContainerStateWaiting reason(String reason) {
    this.reason = reason;
    return this;
  }

  public static ContainerStateWaiting containerStateWaiting() {
    return new ContainerStateWaiting();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy