Show / Hide Table of Contents

Class UserArgs

Inheritance
System.Object
InputArgs
ResourceArgs
UserArgs
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.GitLab
Assembly: Pulumi.GitLab.dll
Syntax
public sealed class UserArgs : ResourceArgs

Constructors

View Source

UserArgs()

Declaration
public UserArgs()

Properties

View Source

CanCreateGroup

Boolean, defaults to false. Whether to allow the user to create groups.

Declaration
public Input<bool> CanCreateGroup { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Email

The e-mail address of the user.

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

IsAdmin

Boolean, defaults to false. Whether to enable administrative priviledges for the user.

Declaration
public Input<bool> IsAdmin { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

IsExternal

Boolean, defaults to false. Whether a user has access only to some internal or private projects. External users can only access projects to which they are explicitly granted access.

Declaration
public Input<bool> IsExternal { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

The name of the user.

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

Password

The password of the user.

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

ProjectsLimit

Integer, defaults to 0. Number of projects user can create.

Declaration
public Input<int> ProjectsLimit { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ResetPassword

Boolean, defaults to false. Send user password reset link.

Declaration
public Input<bool> ResetPassword { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

SkipConfirmation

Boolean, defaults to true. Whether to skip confirmation.

Declaration
public Input<bool> SkipConfirmation { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Username

The username of the user.

Declaration
public Input<string> Username { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.