![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.NodeRuntimeHandler 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;
/**
* NodeRuntimeHandler is a set of runtime handler information.
*/
public class NodeRuntimeHandler {
public NodeRuntimeHandlerFeatures features;
public String name;
public NodeRuntimeHandler features(NodeRuntimeHandlerFeatures features) {
this.features = features;
return this;
}
/**
* Runtime handler name. Empty for the default runtime handler.
*/
public NodeRuntimeHandler name(String name) {
this.name = name;
return this;
}
public static NodeRuntimeHandler nodeRuntimeHandler() {
return new NodeRuntimeHandler();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy