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

io.k8s.api.core.v1.HostIP Maven / Gradle / Ivy

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