![JAR search and dependency download from the Maven repository](/logo.png)
io.k8s.api.flowcontrol.v1.PriorityLevelConfigurationReference 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.flowcontrol.v1;
import java.lang.String;
/**
* PriorityLevelConfigurationReference contains information that points to the "request-priority" being used.
*/
public class PriorityLevelConfigurationReference {
public String name;
/**
* `name` is the name of the priority level configuration being referenced Required.
*/
public PriorityLevelConfigurationReference name(String name) {
this.name = name;
return this;
}
public static PriorityLevelConfigurationReference priorityLevelConfigurationReference() {
return new PriorityLevelConfigurationReference();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy