Show / Hide Table of Contents

Class UserInfoArgs

UserInfo holds the information about the user needed to implement the user.Info interface.

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

Properties

View Source

Extra

Any additional information provided by the authenticator.

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

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

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

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