io.k8s.api.flowcontrol.v1.GroupSubject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bl-k8s131 Show documentation
Show all versions of bl-k8s131 Show documentation
Programmatic resource management for Kubernetes
The newest version!
package io.k8s.api.flowcontrol.v1;
import java.lang.String;
/**
* GroupSubject holds detailed information for group-kind subject.
*/
public class GroupSubject {
public String name;
/**
* name is the user group that matches, or "*
" to match all user groups. See https://github.com/kubernetes/apiserver/blob/master/pkg/authentication/user/user.go for some well-known group names. Required.
*/
public GroupSubject name(String name) {
this.name = name;
return this;
}
public static GroupSubject groupSubject() {
return new GroupSubject();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy