Skip to content

Commit c9bdd45

Browse files
Add properties of Identity. (#8647)
* Add missed properties of Identity. * Fix prettier check. * Add read only according to comment.
1 parent 7070ddd commit c9bdd45

File tree

1 file changed

+26
-1
lines changed

1 file changed

+26
-1
lines changed

specification/resources/resource-manager/Microsoft.Solutions/stable/2019-07-01/managedapplications.json

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1606,16 +1606,41 @@
16061606
"type": "string",
16071607
"description": "The identity type.",
16081608
"enum": [
1609-
"SystemAssigned"
1609+
"SystemAssigned",
1610+
"UserAssigned",
1611+
"SystemAssigned, UserAssigned",
1612+
"None"
16101613
],
16111614
"x-ms-enum": {
16121615
"name": "ResourceIdentityType",
16131616
"modelAsString": false
16141617
}
1618+
},
1619+
"userAssignedIdentities": {
1620+
"type": "object",
1621+
"additionalProperties": {
1622+
"$ref": "#/definitions/userAssignedResourceIdentity"
1623+
},
1624+
"description": "The list of user identities associated with the resource. The user identity dictionary key references will be resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'."
16151625
}
16161626
},
16171627
"description": "Identity for the resource."
16181628
},
1629+
"userAssignedResourceIdentity": {
1630+
"properties": {
1631+
"principalId": {
1632+
"readOnly": true,
1633+
"type": "string",
1634+
"description": "The principal id of user assigned identity."
1635+
},
1636+
"tenantId": {
1637+
"readOnly": true,
1638+
"type": "string",
1639+
"description": "The tenant id of user assigned identity."
1640+
}
1641+
},
1642+
"description": "Represents the user assigned identity that is contained within the UserAssignedIdentities dictionary on ResourceIdentity"
1643+
},
16191644
"Resource": {
16201645
"properties": {
16211646
"id": {

0 commit comments

Comments
 (0)