diff --git a/schemas/2021-07-01/Microsoft.Purview.json b/schemas/2021-07-01/Microsoft.Purview.json index 83eb3df607..2aff448328 100644 --- a/schemas/2021-07-01/Microsoft.Purview.json +++ b/schemas/2021-07-01/Microsoft.Purview.json @@ -135,7 +135,8 @@ { "$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" } - ] + ], + "description": "External Cloud Service connectors" }, "managedResourceGroupName": { "type": "string", @@ -201,7 +202,8 @@ }, "CloudConnectors": { "type": "object", - "properties": {} + "properties": {}, + "description": "External Cloud Service connectors" }, "Identity": { "type": "object", @@ -211,7 +213,9 @@ { "type": "string", "enum": [ - "SystemAssigned" + "None", + "SystemAssigned", + "UserAssigned" ] }, { @@ -219,6 +223,21 @@ } ], "description": "Identity Type." + }, + "userAssignedIdentities": { + "oneOf": [ + { + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/UserAssignedIdentity" + }, + "properties": {} + }, + { + "$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression" + } + ], + "description": "User Assigned Identities" } }, "description": "The Managed Identity of the resource" @@ -292,6 +311,11 @@ } }, "description": "The private link service connection state." + }, + "UserAssignedIdentity": { + "type": "object", + "properties": {}, + "description": "Uses client ID and Principal ID" } } } \ No newline at end of file