io.k8s.api.core.v1.NamespaceStatus 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;
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();
}
}