Class ResourceIdentity

java.lang.Object
com.azure.resourcemanager.appconfiguration.models.ResourceIdentity

public class ResourceIdentity extends Object
An identity that can be associated with a resource.
  • Constructor Details

    • ResourceIdentity

      public ResourceIdentity()
  • Method Details

    • type

      public IdentityType type()
      Get the type property: The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
      Returns:
      the type value.
    • withType

      public ResourceIdentity withType(IdentityType type)
      Set the type property: The type of managed identity used. The type 'SystemAssigned, UserAssigned' includes both an implicitly created identity and a set of user-assigned identities. The type 'None' will remove any identities.
      Parameters:
      type - the type value to set.
      Returns:
      the ResourceIdentity object itself.
    • userAssignedIdentities

      public Map<String,UserIdentity> userAssignedIdentities()
      Get the userAssignedIdentities property: The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
      Returns:
      the userAssignedIdentities value.
    • withUserAssignedIdentities

      public ResourceIdentity withUserAssignedIdentities(Map<String,UserIdentity> userAssignedIdentities)
      Set the userAssignedIdentities property: The list of user-assigned identities associated with the resource. The user-assigned identity dictionary keys 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 ResourceIdentity object itself.
    • principalId

      public String principalId()
      Get the principalId property: The principal id of the identity. This property will only be provided for a system-assigned identity.
      Returns:
      the principalId value.
    • tenantId

      public String tenantId()
      Get the tenantId property: The tenant id associated with the resource's identity. This property will only be provided for a system-assigned identity.
      Returns:
      the tenantId value.
    • validate

      public void validate()
      Validates the instance.
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.