Skip to content

Commit

Permalink
Add MSI property to Remote Rendering Account (#9476)
Browse files Browse the repository at this point in the history
* Add MSI property to Remote Rendering Account

* Fix typo

* Fix examples

* Fix case mismatch in examples
  • Loading branch information
XiangyuL-Microsoft committed May 18, 2020
1 parent 9504ebf commit 7c00a93
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/MyAccount",
"name": "MyAccount",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/alpha",
"name": "alpha",
Expand All @@ -25,6 +28,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/omega",
"name": "omega",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/alpha",
"name": "alpha",
Expand All @@ -24,6 +27,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/omega",
"name": "omega",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"accountName": "MyAccount",
"api-version": "2020-04-06-preview",
"remoteRenderingAccount": {
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"tags": {
"heroine": "juliet",
Expand All @@ -23,6 +26,9 @@
"heroine": "juliet",
"hero": "romeo"
},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/MyAccount",
"name": "MyAccount",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"accountName": "MyAccount",
"api-version": "2020-04-06-preview",
"remoteRenderingAccount": {
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap"
}
},
Expand All @@ -16,6 +19,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/MyAccount",
"name": "MyAccount",
Expand All @@ -29,6 +35,9 @@
"accountDomain": "mixedreality.azure.com"
},
"tags": {},
"identity": {
"type": "SystemAssigned"
},
"location": "eastus2euap",
"id": "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/MyResourceGroup/providers/Microsoft.MixedReality/remoteRenderingAccounts/MyAccount",
"name": "MyAccount",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,13 @@
"description": "RemoteRenderingAccount Response.",
"type": "object",
"properties": {
"identity": {
"allOf": [
{
"$ref": "../../../../../common-types/resource-management/v1/types.json#/definitions/Identity"
}
]
},
"properties": {
"x-ms-client-flatten": true,
"description": "Property bag.",
Expand Down

0 comments on commit 7c00a93

Please sign in to comment.