UserCreateParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
UserCreateParameters() |
Initializes a new instance of the UserCreateParameters class. |
UserCreateParameters(String, String, String, String, String, IList<UserIdentityContract>, String, String, String) |
Initializes a new instance of the UserCreateParameters class. |
UserCreateParameters()
Initializes a new instance of the UserCreateParameters class.
public UserCreateParameters ();
Public Sub New ()
Applies to
UserCreateParameters(String, String, String, String, String, IList<UserIdentityContract>, String, String, String)
Initializes a new instance of the UserCreateParameters class.
public UserCreateParameters (string email, string firstName, string lastName, string state = default, string note = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> identities = default, string password = default, string appType = default, string confirmation = default);
new Microsoft.Azure.Management.ApiManagement.Models.UserCreateParameters : string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.UserCreateParameters
Public Sub New (email As String, firstName As String, lastName As String, Optional state As String = Nothing, Optional note As String = Nothing, Optional identities As IList(Of UserIdentityContract) = Nothing, Optional password As String = Nothing, Optional appType As String = Nothing, Optional confirmation As String = Nothing)
Parameters
- String
Email address. Must not be empty and must be unique within the service instance.
- firstName
- String
First name.
- lastName
- String
Last name.
- state
- String
Account state. Specifies whether the user is active or not. Blocked users are unable to sign into the developer portal or call any APIs of subscribed products. Default state is Active. Possible values include: 'active', 'blocked', 'pending', 'deleted'
- note
- String
Optional note about a user set by the administrator.
- identities
- IList<UserIdentityContract>
Collection of user identities.
- password
- String
User Password. If no value is provided, a default password is generated.
- appType
- String
Determines the type of application which send the create user request. Default is legacy portal. Possible values include: 'portal', 'developerPortal'
- confirmation
- String
Determines the type of confirmation e-mail that will be sent to the newly created user. Possible values include: 'signup', 'invite'
Applies to
Azure SDK for .NET