UserEntityBaseParameters Class

  • java.lang.Object
    • com.microsoft.azure.management.apimanagement.v2019_01_01.UserEntityBaseParameters

public class UserEntityBaseParameters

User Entity Base Parameters set.

Constructor Summary

Constructor Description
UserEntityBaseParameters()

Method Summary

Modifier and Type Method and Description
java.util.List<com.microsoft.azure.management.apimanagement.v2019_01_01.implementation.UserIdentityContractInner> identities()

Get collection of user identities.

java.lang.String note()

Get optional note about a user set by the administrator.

UserState state()

Get account state.

UserEntityBaseParameters withIdentities(List<UserIdentityContractInner> identities)

Set collection of user identities.

UserEntityBaseParameters withNote(String note)

Set optional note about a user set by the administrator.

UserEntityBaseParameters withState(UserState state)

Set account state.

Methods inherited from java.lang.Object

java.lang.Object.clone java.lang.Object.equals java.lang.Object.finalize java.lang.Object.getClass java.lang.Object.hashCode java.lang.Object.notify java.lang.Object.notifyAll java.lang.Object.toString java.lang.Object.wait java.lang.Object.wait java.lang.Object.wait

Constructor Details

UserEntityBaseParameters

public UserEntityBaseParameters()

Method Details

identities

public List identities()

Get collection of user identities.

Returns:

the identities value

note

public String note()

Get optional note about a user set by the administrator.

Returns:

the note value

state

public UserState state()

Get 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'.

Returns:

the state value

withIdentities

public UserEntityBaseParameters withIdentities(List identities)

Set collection of user identities.

Parameters:

identities - the identities value to set

Returns:

the UserEntityBaseParameters object itself.

withNote

public UserEntityBaseParameters withNote(String note)

Set optional note about a user set by the administrator.

Parameters:

note - the note value to set

Returns:

the UserEntityBaseParameters object itself.

withState

public UserEntityBaseParameters withState(UserState state)

Set 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'.

Parameters:

state - the state value to set

Returns:

the UserEntityBaseParameters object itself.

Applies to