Class UserArgs
Inherited Members
Namespace: Pulumi.AzureAD
Assembly: Pulumi.AzureAD.dll
Syntax
public sealed class UserArgs : ResourceArgs
Constructors
View SourceUserArgs()
Declaration
public UserArgs()
Properties
View SourceAccountEnabled
true if the account should be enabled, otherwise false. Defaults to true.
Declaration
public Input<bool> AccountEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
DisplayName
The name to display in the address book for the user.
Declaration
public Input<string> DisplayName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ForcePasswordChange
true if the User is forced to change the password during the next sign-in. Defaults to false.
Declaration
public Input<bool> ForcePasswordChange { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
ImmutableId
The value used to associate an on-premises Active Directory user account with their Azure AD user object. This must be specified if you are using a federated domain for the user's userPrincipalName (UPN) property when creating a new user account.
Declaration
public Input<string> ImmutableId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
MailNickname
The mail alias for the user. Defaults to the user name part of the User Principal Name.
Declaration
public Input<string> MailNickname { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Password
The password for the User. The password must satisfy minimum requirements as specified by the password policy. The maximum length is 256 characters.
Declaration
public Input<string> Password { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
UsageLocation
The usage location of the User. Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. The usage location is a two letter country code (ISO standard 3166). Examples include: NO, JP, and GB. Cannot be reset to null once set.
Declaration
public Input<string> UsageLocation { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
UserPrincipalName
The User Principal Name of the Azure AD User.
Declaration
public Input<string> UserPrincipalName { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |