Class SubjectAccessReviewSpecArgs
SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set
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.Inputs.Authorization.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class SubjectAccessReviewSpecArgs : ResourceArgs
Properties
View SourceExtra
Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.
Declaration
public InputMap<InputList<string>> Extra { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<InputList<System.String>> |
Group
Groups is the groups you're testing for.
Declaration
public InputList<string> Group { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
NonResourceAttributes
NonResourceAttributes describes information for a non-resource access request
Declaration
public Input<NonResourceAttributesArgs> NonResourceAttributes { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<NonResourceAttributesArgs> |
ResourceAttributes
ResourceAuthorizationAttributes describes information for a resource access request
Declaration
public Input<ResourceAttributesArgs> ResourceAttributes { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<ResourceAttributesArgs> |
Uid
UID information about the requesting user.
Declaration
public Input<string> Uid { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
User
User is the user you're testing for. If you specify "User" but not "Group", then is it interpreted as "What if User were not a member of any groups
Declaration
public Input<string> User { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |