Show / Hide Table of Contents

Class SubjectAccessReviewStatusArgs

SubjectAccessReviewStatus

Inheritance
System.Object
InputArgs
ResourceArgs
SubjectAccessReviewStatusArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kubernetes.Types.Inputs.Authorization.V1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class SubjectAccessReviewStatusArgs : ResourceArgs

Properties

View Source

Allowed

Allowed is required. True if the action would be allowed, false otherwise.

Declaration
public Input<bool> Allowed { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Denied

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.

Declaration
public Input<bool> Denied { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

EvaluationError

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.

Declaration
public Input<string> EvaluationError { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Reason

Reason is optional. It indicates why a request was allowed or denied.

Declaration
public Input<string> Reason { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.