![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.discovery.v1.EndpointHints Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s130 Show documentation
Show all versions of bl-k8s130 Show documentation
Programmatic resource management for Kubernetes
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