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

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

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.core.v1;

import java.lang.String;

/**
 * NodeAddress contains information for the node's address.
 */
public class NodeAddress {
  public String address;

  public String type;

  /**
   * The node address.
   */
  public NodeAddress address(String address) {
    this.address = address;
    return this;
  }

  /**
   * Node address type, one of Hostname, ExternalIP or InternalIP.
   */
  public NodeAddress type(String type) {
    this.type = type;
    return this;
  }

  public static NodeAddress nodeAddress() {
    return new NodeAddress();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy