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

io.k8s.api.discovery.v1.EndpointHints Maven / Gradle / Ivy

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

import java.util.List;

/**
 * EndpointHints provides hints describing how an endpoint should be consumed.
 */
public class EndpointHints {
  public List forZones;

  /**
   * forZones indicates the zone(s) this endpoint should be consumed by to enable topology aware routing.
   */
  public EndpointHints forZones(List forZones) {
    this.forZones = forZones;
    return this;
  }

  public static EndpointHints endpointHints() {
    return new EndpointHints();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy