Microsoft Azure · Schema

UserAssignedIdentity

User-assigned managed identity.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
principalId string The principal ID of the user-assigned identity.
clientId string The client ID of the user-assigned identity.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-userassignedidentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserAssignedIdentity",
  "title": "UserAssignedIdentity",
  "type": "object",
  "description": "User-assigned managed identity.",
  "properties": {
    "principalId": {
      "type": "string",
      "readOnly": true,
      "description": "The principal ID of the user-assigned identity.",
      "example": "500123"
    },
    "clientId": {
      "type": "string",
      "readOnly": true,
      "description": "The client ID of the user-assigned identity.",
      "example": "500123"
    }
  }
}