Microsoft Azure · Schema

ManagedClusterIdentity

Identity for the managed cluster.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
principalId string The principal ID of the system-assigned identity.
tenantId string The tenant ID of the system-assigned identity.
type string The type of identity used.
userAssignedIdentities object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-managedclusteridentity-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ManagedClusterIdentity",
  "title": "ManagedClusterIdentity",
  "type": "object",
  "description": "Identity for the managed cluster.",
  "properties": {
    "principalId": {
      "type": "string",
      "readOnly": true,
      "description": "The principal ID of the system-assigned identity.",
      "example": "500123"
    },
    "tenantId": {
      "type": "string",
      "readOnly": true,
      "description": "The tenant ID of the system-assigned identity.",
      "example": "500123"
    },
    "type": {
      "type": "string",
      "enum": [
        "SystemAssigned",
        "UserAssigned",
        "None"
      ],
      "description": "The type of identity used.",
      "example": "SystemAssigned"
    },
    "userAssignedIdentities": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "principalId": {
            "type": "string",
            "readOnly": true
          },
          "clientId": {
            "type": "string",
            "readOnly": true
          }
        }
      },
      "example": "example_value"
    }
  }
}