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

io.k8s.api.flowcontrol.v1.FlowDistinguisherMethod Maven / Gradle / Ivy

package io.k8s.api.flowcontrol.v1;

import java.lang.String;

/**
 * FlowDistinguisherMethod specifies the method of a flow distinguisher.
 */
public class FlowDistinguisherMethod {
  public String type;

  /**
   * `type` is the type of flow distinguisher method The supported types are "ByUser" and "ByNamespace". Required.
   */
  public FlowDistinguisherMethod type(String type) {
    this.type = type;
    return this;
  }

  public static FlowDistinguisherMethod flowDistinguisherMethod() {
    return new FlowDistinguisherMethod();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy