![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.HostIP 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;
/**
* HostIP represents a single IP address allocated to the host.
*/
public class HostIP {
public String ip;
/**
* IP is the IP address assigned to the host
*/
public HostIP ip(String ip) {
this.ip = ip;
return this;
}
public static HostIP hostIP() {
return new HostIP();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy