io.k8s.api.flowcontrol.v1beta3.UserSubject 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;
/**
* UserSubject holds detailed information for user-kind subject.
*/
public class UserSubject {
public String name;
/**
* `name` is the username that matches, or "*
" to match all usernames. Required.
*/
public UserSubject name(String name) {
this.name = name;
return this;
}
public static UserSubject userSubject() {
return new UserSubject();
}
}