io.k8s.api.core.v1.NamespaceSpec 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;
/**
* NamespaceSpec describes the attributes on a Namespace.
*/
public class NamespaceSpec {
public List finalizers;
/**
* Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://kubernetes.io/docs/tasks/administer-cluster/namespaces/
*/
public NamespaceSpec finalizers(List finalizers) {
this.finalizers = finalizers;
return this;
}
public static NamespaceSpec namespaceSpec() {
return new NamespaceSpec();
}
}