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

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

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

import java.lang.String;
import java.util.List;

/**
 * NamespaceStatus is information about the current status of a Namespace.
 */
public class NamespaceStatus {
  public List conditions;

  public String phase;

  /**
   * Represents the latest available observations of a namespace's current state.
   */
  public NamespaceStatus conditions(List conditions) {
    this.conditions = conditions;
    return this;
  }

  /**
   * Phase is the current lifecycle phase of the namespace. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
   */
  public NamespaceStatus phase(String phase) {
    this.phase = phase;
    return this;
  }

  public static NamespaceStatus namespaceStatus() {
    return new NamespaceStatus();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy