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

io.k8s.api.flowcontrol.v1beta3.PriorityLevelConfigurationReference Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.flowcontrol.v1beta3;

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 - 2024 Weber Informatics LLC | Privacy Policy