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

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

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