Identity for the managed cluster.
{ "$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" } } }