io.k8s.api.core.v1.PodIP 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;
/**
* PodIP represents a single IP address allocated to the pod.
*/
public class PodIP {
public String ip;
/**
* IP is the IP address assigned to the pod
*/
public PodIP ip(String ip) {
this.ip = ip;
return this;
}
public static PodIP podIP() {
return new PodIP();
}
}