All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.networking.v1alpha1.IPAddressSpec Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
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();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy