IdentityProperties Class

  • java.lang.Object
    • com.azure.resourcemanager.containerregistry.models.IdentityProperties

Implements

public final class IdentityProperties
implements JsonSerializable<IdentityProperties>

Managed identity for the resource.

Constructor Summary

Constructor Description
IdentityProperties()

Creates an instance of IdentityProperties class.

Method Summary

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

Reads an instance of IdentityProperties from the JsonReader.

String principalId()

Get the principalId property: The principal ID of resource identity.

String tenantId()

Get the tenantId property: The tenant ID of resource.

JsonWriter toJson(JsonWriter jsonWriter)
ResourceIdentityType type()

Get the type property: The identity type.

Map<String,UserIdentityProperties> userAssignedIdentities()

Get the userAssignedIdentities property: The list of user identities associated with the resource.

void validate()

Validates the instance.

IdentityProperties withType(ResourceIdentityType type)

Set the type property: The identity type.

IdentityProperties withUserAssignedIdentities(Map<String,UserIdentityProperties> userAssignedIdentities)

Set the userAssignedIdentities property: The list of user identities associated with the resource.

Methods inherited from java.lang.Object

Constructor Details

IdentityProperties

public IdentityProperties()

Creates an instance of IdentityProperties class.

Method Details

fromJson

public static IdentityProperties fromJson(JsonReader jsonReader)

Reads an instance of IdentityProperties from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of IdentityProperties 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 IdentityProperties.

principalId

public String principalId()

Get the principalId property: The principal ID of resource identity.

Returns:

the principalId value.

tenantId

public String tenantId()

Get the tenantId property: The tenant ID of resource.

Returns:

the tenantId value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

type

public ResourceIdentityType type()

Get the type property: The identity type.

Returns:

the type value.

userAssignedIdentities

public Map userAssignedIdentities()

Get the userAssignedIdentities property: The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

Returns:

the userAssignedIdentities value.

validate

public void validate()

Validates the instance.

withType

public IdentityProperties withType(ResourceIdentityType type)

Set the type property: The identity type.

Parameters:

type - the type value to set.

Returns:

the IdentityProperties object itself.

withUserAssignedIdentities

public IdentityProperties withUserAssignedIdentities(Map userAssignedIdentities)

Set the userAssignedIdentities property: The list of user identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/ providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.

Parameters:

userAssignedIdentities - the userAssignedIdentities value to set.

Returns:

the IdentityProperties object itself.

Applies to