You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use bearer token as authorization header and application/JSON as content type in BODY. (Network tab, filter to management.azure while performing any ARM request on portal.)
145
+
146
+
```rest
147
+
PUT https://management.azure.com/subscriptions/<Enter ISV Subscription Id>/resourceGroups/<Enter ISV Resource Group Name>/providers/Microsoft.Compute/diskEncryptionSets/<Enter ISV Disk Encryption Set Name>?api-version=2021-12-01
148
+
Authorization: Bearer ...
149
+
Content-Type: application/json
150
+
151
+
{
152
+
"name": "<Enter ISV disk encryption set name>",
153
+
"id": "/subscriptions/<Enter ISV Subscription Id>/resourceGroups/<Enter ISV resource group name>/providers/Microsoft.Compute/diskEncryptionSets/<Enter ISV disk encryption set name>/",
154
+
"type": "Microsoft.Compute/diskEncryptionSets",
155
+
"location": "westcentralus",
156
+
"identity": {
157
+
"type": "UserAssigned",
158
+
"userAssignedIdentities": {
159
+
"/subscriptions/<Enter ISV Subscription Id>/resourceGroups/<Enter ISV resource group name>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/<Enter ISV User Assigned Identity Name>
0 commit comments