![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.core.v1.PodSchedulingGate 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.core.v1;
import java.lang.String;
/**
* PodSchedulingGate is associated to a Pod to guard its scheduling.
*/
public class PodSchedulingGate {
public String name;
/**
* Name of the scheduling gate. Each scheduling gate must have a unique name field.
*/
public PodSchedulingGate name(String name) {
this.name = name;
return this;
}
public static PodSchedulingGate podSchedulingGate() {
return new PodSchedulingGate();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy