io.k8s.api.discovery.v1.ForZone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.discovery.v1;
import java.lang.String;
/**
* ForZone provides information about which zones should consume this endpoint.
*/
public class ForZone {
public String name;
/**
* name represents the name of the zone.
*/
public ForZone name(String name) {
this.name = name;
return this;
}
public static ForZone forZone() {
return new ForZone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy