Class SubjectAccessReviewStatus
SubjectAccessReviewStatus
Inheritance
System.Object
SubjectAccessReviewStatus
Inherited Members
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.Outputs.Authorization.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public sealed class SubjectAccessReviewStatus
Fields
View SourceAllowed
Allowed is required. True if the action would be allowed, false otherwise.
Declaration
public readonly bool Allowed
Field Value
| Type | Description |
|---|---|
| System.Boolean |
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 readonly bool Denied
Field Value
| Type | Description |
|---|---|
| System.Boolean |
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 readonly string EvaluationError
Field Value
| Type | Description |
|---|---|
| System.String |
Reason
Reason is optional. It indicates why a request was allowed or denied.
Declaration
public readonly string Reason
Field Value
| Type | Description |
|---|---|
| System.String |