Share via


UserEntityBaseParameters Constructors

Definition

Overloads

UserEntityBaseParameters()

Initializes a new instance of the UserEntityBaseParameters class.

UserEntityBaseParameters(String, String, IList<UserIdentityContract>)

Initializes a new instance of the UserEntityBaseParameters class.

UserEntityBaseParameters()

Initializes a new instance of the UserEntityBaseParameters class.

public UserEntityBaseParameters ();
Public Sub New ()

Applies to

UserEntityBaseParameters(String, String, IList<UserIdentityContract>)

Initializes a new instance of the UserEntityBaseParameters class.

public UserEntityBaseParameters (string state = default, string note = default, System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> identities = default);
new Microsoft.Azure.Management.ApiManagement.Models.UserEntityBaseParameters : string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.UserIdentityContract> -> Microsoft.Azure.Management.ApiManagement.Models.UserEntityBaseParameters
Public Sub New (Optional state As String = Nothing, Optional note As String = Nothing, Optional identities As IList(Of UserIdentityContract) = 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.

Applies to