![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.DaemonEndpoint 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.Long;
/**
* DaemonEndpoint contains information about a single Daemon endpoint.
*/
public class DaemonEndpoint {
public Long Port;
/**
* Port number of the given endpoint.
*/
public DaemonEndpoint Port(Long Port) {
this.Port = Port;
return this;
}
public static DaemonEndpoint daemonEndpoint() {
return new DaemonEndpoint();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy