![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.Capabilities 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;
/**
* Adds and removes POSIX capabilities from running containers.
*/
public class Capabilities {
public List add;
public List drop;
/**
* Added capabilities
*/
public Capabilities add(List add) {
this.add = add;
return this;
}
/**
* Removed capabilities
*/
public Capabilities drop(List drop) {
this.drop = drop;
return this;
}
public static Capabilities capabilities() {
return new Capabilities();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy