다음을 통해 공유


UserAssignedIdentitiesListResult Class

  • java.lang.Object
    • com.azure.resourcemanager.msi.models.UserAssignedIdentitiesListResult

Implements

public final class UserAssignedIdentitiesListResult
implements JsonSerializable<UserAssignedIdentitiesListResult>

Values returned by the List operation.

Constructor Summary

Constructor Description
UserAssignedIdentitiesListResult()

Creates an instance of UserAssignedIdentitiesListResult class.

Method Summary

Modifier and Type Method and Description
static UserAssignedIdentitiesListResult fromJson(JsonReader jsonReader)

Reads an instance of UserAssignedIdentitiesListResult from the JsonReader.

String nextLink()

Get the nextLink property: The url to get the next page of results, if any.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

List<IdentityInner> value()

Get the value property: The collection of userAssignedIdentities returned by the listing operation.

UserAssignedIdentitiesListResult withNextLink(String nextLink)

Set the nextLink property: The url to get the next page of results, if any.

UserAssignedIdentitiesListResult withValue(List<IdentityInner> value)

Set the value property: The collection of userAssignedIdentities returned by the listing operation.

Methods inherited from java.lang.Object

Constructor Details

UserAssignedIdentitiesListResult

public UserAssignedIdentitiesListResult()

Creates an instance of UserAssignedIdentitiesListResult class.

Method Details

fromJson

public static UserAssignedIdentitiesListResult fromJson(JsonReader jsonReader)

Reads an instance of UserAssignedIdentitiesListResult from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of UserAssignedIdentitiesListResult if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If an error occurs while reading the UserAssignedIdentitiesListResult.

nextLink

public String nextLink()

Get the nextLink property: The url to get the next page of results, if any.

Returns:

the nextLink value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

value

public List<IdentityInner> value()

Get the value property: The collection of userAssignedIdentities returned by the listing operation.

Returns:

the value value.

withNextLink

public UserAssignedIdentitiesListResult withNextLink(String nextLink)

Set the nextLink property: The url to get the next page of results, if any.

Parameters:

nextLink - the nextLink value to set.

Returns:

the UserAssignedIdentitiesListResult object itself.

withValue

public UserAssignedIdentitiesListResult withValue(List<IdentityInner> value)

Set the value property: The collection of userAssignedIdentities returned by the listing operation.

Parameters:

value - the value value to set.

Returns:

the UserAssignedIdentitiesListResult object itself.

Applies to