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

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

package io.k8s.api.core.v1;

import java.lang.Long;

/**
 * DaemonEndpoint contains information about a single Daemon endpoint.
 */
public class DaemonEndpoint {
  public Long Port;

  /**
   * Port number of the given endpoint.
   */
  public DaemonEndpoint Port(Long Port) {
    this.Port = Port;
    return this;
  }

  public static DaemonEndpoint daemonEndpoint() {
    return new DaemonEndpoint();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy