Show / Hide Table of Contents

Class SubjectAccessReviewSpecArgs

SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set

Inheritance
System.Object
InputArgs
ResourceArgs
SubjectAccessReviewSpecArgs
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.V1Beta1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class SubjectAccessReviewSpecArgs : ResourceArgs

Properties

View Source

Extra

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>>
View Source

Group

Groups is the groups you're testing for.

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

NonResourceAttributes

NonResourceAttributes describes information for a non-resource access request

Declaration
public Input<NonResourceAttributesArgs> NonResourceAttributes { get; set; }
Property Value
Type Description
Input<NonResourceAttributesArgs>
View Source

ResourceAttributes

ResourceAuthorizationAttributes describes information for a resource access request

Declaration
public Input<ResourceAttributesArgs> ResourceAttributes { get; set; }
Property Value
Type Description
Input<ResourceAttributesArgs>
View Source

Uid

UID information about the requesting user.

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

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.