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

io.k8s.api.authorization.v1.SelfSubjectRulesReviewSpec Maven / Gradle / Ivy

package io.k8s.api.authorization.v1;

import java.lang.String;

/**
 * SelfSubjectRulesReviewSpec defines the specification for SelfSubjectRulesReview.
 */
public class SelfSubjectRulesReviewSpec {
  public String namespace;

  /**
   * Namespace to evaluate rules for. Required.
   */
  public SelfSubjectRulesReviewSpec namespace(String namespace) {
    this.namespace = namespace;
    return this;
  }

  public static SelfSubjectRulesReviewSpec selfSubjectRulesReviewSpec() {
    return new SelfSubjectRulesReviewSpec();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy