io.k8s.api.networking.v1alpha1.IPAddressSpec 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.networking.v1alpha1;
/**
* IPAddressSpec describe the attributes in an IP Address.
*/
public class IPAddressSpec {
public ParentReference parentRef;
public IPAddressSpec parentRef(ParentReference parentRef) {
this.parentRef = parentRef;
return this;
}
public static IPAddressSpec iPAddressSpec() {
return new IPAddressSpec();
}
}