UserUpdateParameters 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
UserUpdateParameters() |
Initializes a new instance of the UserUpdateParameters class. |
UserUpdateParameters(String, String, IList<UserIdentityContract>, String, String, String, String) |
Initializes a new instance of the UserUpdateParameters class. |
UserUpdateParameters()
Initializes a new instance of the UserUpdateParameters class.
public UserUpdateParameters ();
Public Sub New ()
Applies to
UserUpdateParameters(String, String, IList<UserIdentityContract>, String, String, String, String)
Initializes a new instance of the UserUpdateParameters class.
public UserUpdateParameters (string state = default, string note = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> identities = default, string email = default, string password = default, string firstName = default, string lastName = default);
new Microsoft.Azure.Management.ApiManagement.Models.UserUpdateParameters : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> * string * string * string * string -> Microsoft.Azure.Management.ApiManagement.Models.UserUpdateParameters
Public Sub New (Optional state As String = Nothing, Optional note As String = Nothing, Optional identities As IList(Of UserIdentityContract) = Nothing, Optional email As String = Nothing, Optional password As String = Nothing, Optional firstName As String = Nothing, Optional lastName As String = Nothing)
Parameters
- 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.
- String
Email address. Must not be empty and must be unique within the service instance.
- password
- String
User Password.
- firstName
- String
First name.
- lastName
- String
Last name.
Applies to
Azure SDK for .NET