Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1bcc20d
Add blockchain to latest profile
markcowl Aug 22, 2019
7b46097
Add additional types
markcowl Aug 22, 2019
5dbb091
Merge branch 'main' of https://github.com/Azure/azure-rest-api-specs …
Jan 4, 2022
e1600f7
[CDN] Fix incorrect type for compressionSettings and SharedPrivateLin…
Jan 4, 2022
d8ac4f9
Merge pull request #1 from t-bzhan/cdn-swagger-2021-06-01-fix
ChenglongLiu Jan 5, 2022
b2a85ff
Update SecurityPolicy patch operation
Jan 5, 2022
36c88c1
Update SecurityPolicy patch operation
Jan 5, 2022
ff473fa
Update SecurityPolicy patch operation
Jan 5, 2022
85c0a16
Update SecurityPolicy patch operation
Jan 5, 2022
9f1b614
Update SecurityPolicy patch operation
Jan 5, 2022
3b76a49
Update SecurityPolicy patch operation
Jan 5, 2022
aea71be
Update SecurityPolicy patch operation
Jan 5, 2022
ddb3135
Update SecurityPolicy patch operation
Jan 5, 2022
de5976b
Update SecurityPolicy patch operation
Jan 5, 2022
d390ac7
Update SecurityPolicy patch operation
Jan 5, 2022
898caaf
Merge pull request #2 from ChenglongLiu/chenglong/fix
ChenglongLiu Jan 5, 2022
c3d298d
Removing originResponseTimeoutSeconds from endpoint level
Jan 5, 2022
0aaeb49
Merge pull request #3 from ChenglongLiu/users/sinadell/originswaggerfix
sinadell Jan 5, 2022
f79d3b4
Fix the afdendpoint example
Jan 6, 2022
06ffa40
Merge pull request #4 from ChenglongLiu/chenglong/fixTimeoutExample
ChenglongLiu Jan 6, 2022
f82cdc7
Fix the cacheDuration format
Jan 7, 2022
4234b85
Merge pull request #5 from ChenglongLiu/chenglong/fixDurationFormat
ChenglongLiu Jan 7, 2022
d6a4a31
Adding user assigned identity to managed identity
ajbrown821 Jan 7, 2022
749ee52
Merge pull request #7 from ChenglongLiu/dev/ajbrown/user-assigned-enu…
ChenglongLiu Jan 10, 2022
7821c1e
Fix the typo and example
Jan 10, 2022
51493ec
Merge pull request #8 from ChenglongLiu/chenglong/fixbug
ChenglongLiu Jan 10, 2022
de566e6
Fix OBJECT_ADDITIONAL_PROPERTIES
Jan 13, 2022
681eb8a
Merge pull request #9 from ChenglongLiu/chenglong/fixbug2
ChenglongLiu Jan 13, 2022
28a5464
Revert responseBasedAFDOriginErrorDetectionSettings
Jan 14, 2022
cb01cc5
Merge pull request #11 from ChenglongLiu/chenglong/revert
ChenglongLiu Jan 14, 2022
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
Prev Previous commit
Next Next commit
Adding user assigned identity to managed identity
  • Loading branch information
ajbrown821 committed Jan 7, 2022
commit d6a4a3139668b7849166ff4832756add31e7da6d
Original file line number Diff line number Diff line change
Expand Up @@ -2521,6 +2521,8 @@
"description": "Type of managed service identity.",
"enum": [
"SystemAssigned",
"UserAssigned",
"SystemAssigned, UserAssigned",
"None"
],
"type": "string",
Expand All @@ -2538,6 +2540,29 @@
"description": "Principal Id of managed service identity.",
"type": "string",
"readOnly": true
},
"userAssignedIdentities": {
"description": "The list of user assigned identities associated with the resource. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}",
"type": "object",
"additionalProperties": {
"$ref": "#/definitions/userAssignedIdentity"
}
}
}
},
"userAssignedIdentity": {
"description": "User Assigned identity.",
"type": "object",
"properties": {
"principalId": {
"description": "Principal Id of user assigned identity",
"type": "string",
"readOnly": true
},
"clientId": {
"description": "Client Id of user assigned identity",
"type": "string",
"readOnly": true
}
}
},
Expand Down