io.k8s.api.flowcontrol.v1beta3.FlowDistinguisherMethod 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.v1beta3;
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();
}
}