Class V1SubjectAccessReviewStatus

java.lang.Object
io.kubernetes.client.openapi.models.V1SubjectAccessReviewStatus

@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen", date="2023-06-18T15:05:57.863601Z[Etc/UTC]") public class V1SubjectAccessReviewStatus extends Object
SubjectAccessReviewStatus
  • Field Details

  • Constructor Details

    • V1SubjectAccessReviewStatus

      public V1SubjectAccessReviewStatus()
  • Method Details

    • allowed

      public V1SubjectAccessReviewStatus allowed(Boolean allowed)
    • getAllowed

      public Boolean getAllowed()
      Allowed is required. True if the action would be allowed, false otherwise.
      Returns:
      allowed
    • setAllowed

      public void setAllowed(Boolean allowed)
    • denied

      public V1SubjectAccessReviewStatus denied(Boolean denied)
    • getDenied

      @Nullable public Boolean getDenied()
      Denied is optional. True if the action would be denied, otherwise false. If both allowed is false and denied is false, then the authorizer has no opinion on whether to authorize the action. Denied may not be true if Allowed is true.
      Returns:
      denied
    • setDenied

      public void setDenied(Boolean denied)
    • evaluationError

      public V1SubjectAccessReviewStatus evaluationError(String evaluationError)
    • getEvaluationError

      @Nullable public String getEvaluationError()
      EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.
      Returns:
      evaluationError
    • setEvaluationError

      public void setEvaluationError(String evaluationError)
    • reason

      public V1SubjectAccessReviewStatus reason(String reason)
    • getReason

      @Nullable public String getReason()
      Reason is optional. It indicates why a request was allowed or denied.
      Returns:
      reason
    • setReason

      public void setReason(String reason)
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object