Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1462,28 +1462,30 @@
"description": "The client tenant id of the identity."
},
"userAssignedIdentities": {
"description": "The list of user identities associated with the resource. The user identity \r\ndictionary key references will be ARM resource ids in the form: \r\n'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/\r\n providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.",
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"principalId": {
"readOnly": true,
"type": "string",
"description": "The principal id of user assigned identity."
},
"clientId": {
"readOnly": true,
"type": "string",
"description": "The client id of user assigned identity."
}
}
"$ref": "#/definitions/UserIdentityProperties"
}
}
},
"required": [
"type"
]
},
"UserIdentityProperties": {
"type": "object",
"properties": {
"principalId": {
"description": "The principal id of user assigned identity.",
"type": "string"
},
"clientId": {
"description": "The client id of user assigned identity.",
"type": "string"
}
}
},
"Operation": {
"description": "REST API operation",
"type": "object",
Expand Down