Show / Hide Table of Contents

Class UserState

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

Constructors

View Source

UserState()

Declaration
public UserState()

Properties

View Source

AccountEnabled

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

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

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

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

Mail

The primary email address of the Azure AD User.

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

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

ObjectId

The Object ID of the Azure AD User.

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

OnpremisesSamAccountName

The on premise sam account name of the Azure AD User.

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

OnpremisesUserPrincipalName

The on premise user principal name of the Azure AD User.

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

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

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

UserPrincipalName

The User Principal Name of the Azure AD User.

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