Class UserInfoArgs
UserInfo holds the information about the user needed to implement the user.Info interface.
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.Authentication.V1
Assembly: Pulumi.Kubernetes.dll
Syntax
public class UserInfoArgs : ResourceArgs
Properties
View SourceExtra
Any additional information provided by the authenticator.
Declaration
public InputMap<InputList<string>> Extra { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<InputList<System.String>> |
Groups
The names of groups this user is a part of.
Declaration
public InputList<string> Groups { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
Uid
A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.
Declaration
public Input<string> Uid { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Username
The name that uniquely identifies this user among all active users.
Declaration
public Input<string> Username { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |