diff --git a/src/MixedReality/MixedReality.Test/MixedReality.Test.csproj b/src/MixedReality/MixedReality.Test/MixedReality.Test.csproj
index 471b879c1332..4372af41edfb 100644
--- a/src/MixedReality/MixedReality.Test/MixedReality.Test.csproj
+++ b/src/MixedReality/MixedReality.Test/MixedReality.Test.csproj
@@ -8,7 +8,7 @@
-
+
diff --git a/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.cs b/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.cs
new file mode 100644
index 000000000000..5fb5760fa9a2
--- /dev/null
+++ b/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.cs
@@ -0,0 +1,51 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using Microsoft.WindowsAzure.Commands.ScenarioTest;
+using Xunit;
+
+namespace Microsoft.Azure.Commands.MixedReality.Test
+{
+ public class RemoteRenderingAccountTests
+ {
+ private ServiceManagement.Common.Models.XunitTracingInterceptor _logger;
+
+ public RemoteRenderingAccountTests(Xunit.Abstractions.ITestOutputHelper output)
+ {
+ _logger = new ServiceManagement.Common.Models.XunitTracingInterceptor(output);
+ ServiceManagement.Common.Models.XunitTracingInterceptor.AddToContext(_logger);
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoteRenderingAccountOperations()
+ {
+ TestController.NewInstance.RunPowerShellTest(_logger, "Test-RemoteRenderingAccountOperations");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestRemoteRenderingAccountOperationsWithPiping()
+ {
+ TestController.NewInstance.RunPowerShellTest(_logger, "Test-RemoteRenderingAccountOperationsWithPiping");
+ }
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestListRemoteRenderingAccounts()
+ {
+ TestController.NewInstance.RunPowerShellTest(_logger, "Test-ListRemoteRenderingAccounts");
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.ps1 b/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.ps1
new file mode 100644
index 000000000000..0c70eb682c9a
--- /dev/null
+++ b/src/MixedReality/MixedReality.Test/ScenarioTests/RemoteRenderingAccountTests.ps1
@@ -0,0 +1,122 @@
+# ----------------------------------------------------------------------------------
+#
+# Copyright Microsoft Corporation
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+# http://www.apache.org/licenses/LICENSE-2.0
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ----------------------------------------------------------------------------------
+
+<#
+.SYNOPSIS
+Create Get and Delete Remote Rendering Account
+#>
+function Test-RemoteRenderingAccountOperations
+{
+ $resourceGroup = TestSetup-CreateResourceGroup
+ $resourceLocation = "EastUS2"
+ $accountName = getAssetName
+
+ $createdAccount = New-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Location $resourceLocation
+ Assert-AreEqual $accountName $createdAccount.Name
+ Assert-AreEqual $resourceGroup.ResourceGroupName $createdAccount.ResourceGroupName
+ Assert-AreEqual $resourceLocation $createdAccount.Location
+
+ $account = Get-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName
+ Assert-AreEqual $accountName $account.Name
+ Assert-AreEqual $resourceGroup.ResourceGroupName $account.ResourceGroupName
+ Assert-AreEqual $resourceLocation $account.Location
+
+ Assert-ThrowsContains { New-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Force } "Parameter set cannot be resolved using the specified named parameters."
+
+ $old = Get-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName
+ $new = New-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Primary -Force
+ Assert-AreNotEqual $old.PrimaryKey $new.PrimaryKey
+
+ $old = $new
+ $new = New-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Secondary -Force
+ Assert-AreNotEqual $old.SecondaryKey $new.SecondaryKey
+
+ $accountRemoved = Remove-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -PassThru
+ Assert-True{$accountRemoved}
+
+ Assert-ThrowsContains { Get-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName } "not found"
+
+ Remove-AzureRmResourceGroup -Name $resourceGroup.ResourceGroupName -Force
+}
+
+<#
+.SYNOPSIS
+Create Get and Delete Remote Rendering Account
+#>
+function Test-RemoteRenderingAccountOperationsWithPiping
+{
+ $resourceGroup = TestSetup-CreateResourceGroup
+ $resourceLocation = "EastUS2"
+ $accountName = getAssetName
+
+ $createdAccount = New-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Location $resourceLocation
+ Assert-AreEqual $accountName $createdAccount.Name
+ Assert-AreEqual $resourceGroup.ResourceGroupName $createdAccount.ResourceGroupName
+ Assert-AreEqual $resourceLocation $createdAccount.Location
+
+ Assert-ThrowsContains { $createdAccount | New-AzRemoteRenderingAccountKey -Force } "Parameter set cannot be resolved using the specified named parameters."
+
+ $old = $createdAccount | Get-AzRemoteRenderingAccountKey
+ $new = $createdAccount | New-AzRemoteRenderingAccountKey -Primary -Force
+ Assert-AreNotEqual $old.PrimaryKey $new.PrimaryKey
+
+ $old = $new
+ $new = $createdAccount | New-AzRemoteRenderingAccountKey -Secondary -Force
+ Assert-AreNotEqual $old.SecondaryKey $new.SecondaryKey
+
+ $accountRemoved = $createdAccount | Remove-AzRemoteRenderingAccount -PassThru
+ Assert-True{$accountRemoved}
+
+ Assert-ThrowsContains { Get-AzRemoteRenderingAccount -Id $createdAccount.Id } "not found"
+
+ Remove-AzureRmResourceGroup -Name $resourceGroup.ResourceGroupName -Force
+}
+
+<#
+.SYNOPSIS
+Endpoint pipeline exercise
+#>
+function Test-ListRemoteRenderingAccounts
+{
+ $resourceGroup = TestSetup-CreateResourceGroup
+ $resourceLocation = "EastUS2"
+ $accountName = getAssetName
+
+ $accounts = Get-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName
+ $originalCount = $accounts.Count
+
+ $createdAccount = New-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Location $resourceLocation
+ Assert-AreEqual $accountName $createdAccount.Name
+ Assert-AreEqual $resourceGroup.ResourceGroupName $createdAccount.ResourceGroupName
+ Assert-AreEqual $resourceLocation $createdAccount.Location
+
+ $accounts = Get-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName
+ Assert-AreEqual $accounts.Count ($originalCount + 1)
+
+ $old = Get-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName
+ $new = New-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Primary -Force
+ Assert-AreNotEqual $old.PrimaryKey $new.PrimaryKey
+
+ $old = $new
+ $new = New-AzRemoteRenderingAccountKey -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -Secondary -Force
+ Assert-AreNotEqual $old.SecondaryKey $new.SecondaryKey
+
+ $accountRemoved = Remove-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -PassThru
+ Assert-True{$accountRemoved}
+
+ $accounts = Get-AzRemoteRenderingAccount -ResourceGroupName $resourceGroup.ResourceGroupName
+ Assert-AreEqual $accounts.Count $originalCount
+
+ Remove-AzureRmResourceGroup -Name $resourceGroup.ResourceGroupName -Force
+}
diff --git a/src/MixedReality/MixedReality.Test/ScenarioTests/SpatialAnchorsAccountTests.ps1 b/src/MixedReality/MixedReality.Test/ScenarioTests/SpatialAnchorsAccountTests.ps1
index 3fd23b7f980a..8913ad2bd3c9 100644
--- a/src/MixedReality/MixedReality.Test/ScenarioTests/SpatialAnchorsAccountTests.ps1
+++ b/src/MixedReality/MixedReality.Test/ScenarioTests/SpatialAnchorsAccountTests.ps1
@@ -45,7 +45,7 @@ function Test-SpatialAnchorsAccountOperations
$accountRemoved = Remove-AzSpatialAnchorsAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName -PassThru
Assert-True{$accountRemoved}
- Assert-ThrowsContains { Get-AzSpatialAnchorsAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName } "NotFound"
+ Assert-ThrowsContains { Get-AzSpatialAnchorsAccount -ResourceGroupName $resourceGroup.ResourceGroupName -Name $accountName } "not found"
Remove-AzureRmResourceGroup -Name $resourceGroup.ResourceGroupName -Force
}
@@ -78,7 +78,7 @@ function Test-SpatialAnchorsAccountOperationsWithPiping
$accountRemoved = $createdAccount | Remove-AzSpatialAnchorsAccount -PassThru
Assert-True{$accountRemoved}
- Assert-ThrowsContains { Get-AzSpatialAnchorsAccount -Id $createdAccount.Id } "NotFound"
+ Assert-ThrowsContains { Get-AzSpatialAnchorsAccount -Id $createdAccount.Id } "not found"
Remove-AzureRmResourceGroup -Name $resourceGroup.ResourceGroupName -Force
}
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestListRemoteRenderingAccounts.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestListRemoteRenderingAccounts.json
new file mode 100644
index 000000000000..760a3c458e43
--- /dev/null
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestListRemoteRenderingAccounts.json
@@ -0,0 +1,880 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps8410?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzODQxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "dd692f28-c75d-4e81-9b91-a14949ae504b"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "4b6c68b9-ff29-4b14-a99f-cd44434ae80d"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b6c68b9-ff29-4b14-a99f-cd44434ae80d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113903Z:4b6c68b9-ff29-4b14-a99f-cd44434ae80d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:03 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410\",\r\n \"name\": \"ps8410\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTA2LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c9a48d7e-ad44-4c41-b7cd-8202f66182ae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "SYCh0gtGCUa7hsUu5YWdRQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "fb5dcbaa-1fff-49b7-be13-8bdf391134b8"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb5dcbaa-1fff-49b7-be13-8bdf391134b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113903Z:fb5dcbaa-1fff-49b7-be13-8bdf391134b8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:03 GMT"
+ ],
+ "Content-Length": [
+ "28"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nextLink\": null,\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTA2LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "225bc408-a3ae-4a4e-9024-eaa68ee5baae"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "bOAl3MCLZ0qboyILrLQWcg.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "61e171c6-9f9c-489e-ad19-6dfba8b861b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "61e171c6-9f9c-489e-ad19-6dfba8b861b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113908Z:61e171c6-9f9c-489e-ad19-6dfba8b861b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:07 GMT"
+ ],
+ "Content-Length": [
+ "559"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nextLink\": null,\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894\",\r\n \"name\": \"ps8894\",\r\n \"type\": \"Microsoft.MixedReality/remoteRenderingAccounts\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"34c80618-515a-4adb-b324-10c723c5fd96\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"f715d1cc-5531-49d0-8602-03a8e725f445\"\r\n }\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTA2LXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4efea437-9cbf-40dc-8163-06e6c2e76620"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "Y9Xupmvp/0SY+7/O4ZOGNQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "727f5ca5-024c-4bd6-ae15-20e9f4d6d99d"
+ ],
+ "x-ms-correlation-request-id": [
+ "727f5ca5-024c-4bd6-ae15-20e9f4d6d99d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113910Z:727f5ca5-024c-4bd6-ae15-20e9f4d6d99d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:09 GMT"
+ ],
+ "Content-Length": [
+ "28"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"nextLink\": null,\r\n \"value\": []\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczg4OTQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"EastUS2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "189cd1c4-98cf-48ee-8c29-2c0c4f541e51"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "82"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894"
+ ],
+ "MS-CV": [
+ "Cj+izyOaNkKTaCls+KjGzA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "c8ddd37f-7baf-4c34-b90d-278b6d4e78a2"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8ddd37f-7baf-4c34-b90d-278b6d4e78a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113908Z:c8ddd37f-7baf-4c34-b90d-278b6d4e78a2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:07 GMT"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894\",\r\n \"name\": \"ps8894\",\r\n \"type\": \"Microsoft.MixedReality/remoteRenderingAccounts\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"34c80618-515a-4adb-b324-10c723c5fd96\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"f715d1cc-5531-49d0-8602-03a8e725f445\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894/listKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczg4OTQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b3058f47-32ab-4364-817b-fad89d57f0f7"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "AO5NIY0XBUuoHE3V0CAxvQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "002f5c19-8533-4d46-b460-452dc9885dda"
+ ],
+ "x-ms-correlation-request-id": [
+ "002f5c19-8533-4d46-b460-452dc9885dda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113908Z:002f5c19-8533-4d46-b460-452dc9885dda"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:08 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"wWI5B7ZiJ5TH0r2wwL2/plc/cm+oEd4Gf0QdYELY3ec=\",\r\n \"secondaryKey\": \"7HyDM9RrmU3yQFMRVqh7AGt1rw7Z0ZZki5OXyZfj67A=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczg4OTQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 1\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "140d7406-6b48-47c2-a038-e840daf06ae2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "VOCBWWum4kGHFcrGkPkYoQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "a23c1a3b-9aeb-4040-9aa7-1b1fbc3bbd45"
+ ],
+ "x-ms-correlation-request-id": [
+ "a23c1a3b-9aeb-4040-9aa7-1b1fbc3bbd45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113909Z:a23c1a3b-9aeb-4040-9aa7-1b1fbc3bbd45"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:08 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"NRcMotX13U7OOW/pDp4mszCeyaCgtpkRj5NGIoSdCqI=\",\r\n \"secondaryKey\": \"7HyDM9RrmU3yQFMRVqh7AGt1rw7Z0ZZki5OXyZfj67A=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczg4OTQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 2\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "cb2d6794-3aba-41e8-9f3c-4b341f7052a3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "sy5j8pq320m88EdANwX6FA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "fb5e4b31-80ce-4496-9322-4f0a7dd851ed"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb5e4b31-80ce-4496-9322-4f0a7dd851ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113909Z:fb5e4b31-80ce-4496-9322-4f0a7dd851ed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:08 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"NRcMotX13U7OOW/pDp4mszCeyaCgtpkRj5NGIoSdCqI=\",\r\n \"secondaryKey\": \"dYzNVfSFEbxpoz481DbDJUfIe16dwQ3tnxbe1Yppdag=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps8410/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps8894?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzODQxMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczg4OTQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "4e4ed564-8e2e-43f6-b85e-2ce034526004"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "7BS01pVkX0+aMpbA4on5Xw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "c443b6e7-01d4-434b-976f-03faadae1647"
+ ],
+ "x-ms-correlation-request-id": [
+ "c443b6e7-01d4-434b-976f-03faadae1647"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113910Z:c443b6e7-01d4-434b-976f-03faadae1647"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:09 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps8410?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzODQxMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1d4f63c6-c5eb-4b8f-9490-2f9ccb2a616a"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "e18aa471-ba8b-477f-a38e-c8aacdf56c9a"
+ ],
+ "x-ms-correlation-request-id": [
+ "e18aa471-ba8b-477f-a38e-c8aacdf56c9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113910Z:e18aa471-ba8b-477f-a38e-c8aacdf56c9a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:10 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "a8a5e1e8-0d0d-4f29-ae44-ae1f2da677b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8a5e1e8-0d0d-4f29-ae44-ae1f2da677b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113925Z:a8a5e1e8-0d0d-4f29-ae44-ae1f2da677b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:24 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "ef7e0764-a0a5-4380-80c3-3145143ccace"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef7e0764-a0a5-4380-80c3-3145143ccace"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113940Z:ef7e0764-a0a5-4380-80c3-3145143ccace"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:39 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "3814cb52-3528-454a-a75a-67fdfcd51eed"
+ ],
+ "x-ms-correlation-request-id": [
+ "3814cb52-3528-454a-a75a-67fdfcd51eed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113955Z:3814cb52-3528-454a-a75a-67fdfcd51eed"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg0MTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnME1UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "08ddea1f-c003-44f0-bfc1-b98e55dcd782"
+ ],
+ "x-ms-correlation-request-id": [
+ "08ddea1f-c003-44f0-bfc1-b98e55dcd782"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113955Z:08ddea1f-c003-44f0-bfc1-b98e55dcd782"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:54 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-ListRemoteRenderingAccounts": [
+ "ps8410",
+ "ps8894"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "10438cf7-a794-4c7b-ad4c-5ddc1313ba7d"
+ }
+}
\ No newline at end of file
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperations.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperations.json
new file mode 100644
index 000000000000..06ab66bb7c47
--- /dev/null
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperations.json
@@ -0,0 +1,814 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7739?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzczOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "99bd5cc9-fdc6-428b-8a5b-4af3a4a0d757"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "6fcdd8f9-e018-4f8d-b233-6dfdd644bc66"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fcdd8f9-e018-4f8d-b233-6dfdd644bc66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113805Z:6fcdd8f9-e018-4f8d-b233-6dfdd644bc66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:04 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739\",\r\n \"name\": \"ps7739\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"EastUS2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "32ad66ef-5b56-4f67-bcb2-5702ceb52de2"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "82"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574"
+ ],
+ "MS-CV": [
+ "lPZJMu8eWUy3e6M0/ax9iw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "eb44e93d-e012-44e8-bfa7-1497149fcaf3"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb44e93d-e012-44e8-bfa7-1497149fcaf3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113809Z:eb44e93d-e012-44e8-bfa7-1497149fcaf3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:08 GMT"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574\",\r\n \"name\": \"ps3574\",\r\n \"type\": \"Microsoft.MixedReality/remoteRenderingAccounts\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5cf4295-5b6f-4b15-a5ff-02bd38bf5c23\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"93242831-6f91-4ea8-8d90-d335b1b01c12\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "78262f01-eb44-4c60-bb97-708e2b242530"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "w11nDY9h6k2c5H4ANcRGNw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "e36580f7-f2c0-4a8a-ae3d-fd818e2bee2d"
+ ],
+ "x-ms-correlation-request-id": [
+ "e36580f7-f2c0-4a8a-ae3d-fd818e2bee2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113809Z:e36580f7-f2c0-4a8a-ae3d-fd818e2bee2d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:08 GMT"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574\",\r\n \"name\": \"ps3574\",\r\n \"type\": \"Microsoft.MixedReality/remoteRenderingAccounts\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"c5cf4295-5b6f-4b15-a5ff-02bd38bf5c23\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"93242831-6f91-4ea8-8d90-d335b1b01c12\"\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7c549e66-1e71-4273-b092-d053ad9b3a60"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "4e0f5b8d-7c7b-4219-b4b6-901f01ce405e"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e0f5b8d-7c7b-4219-b4b6-901f01ce405e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113813Z:4e0f5b8d-7c7b-4219-b4b6-901f01ce405e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:13 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "163"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/remoteRenderingAccounts/ps3574' under resource group 'ps7739' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574/listKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "ad1358a4-872d-4734-8e2d-5cdac753a650"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "M7eeXuFojk64rmHhUErXpw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "b5f6b232-d3fb-4be3-917a-8448c30c7760"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5f6b232-d3fb-4be3-917a-8448c30c7760"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113809Z:b5f6b232-d3fb-4be3-917a-8448c30c7760"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:09 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"I4rQmn5/71xOLoJLPIiRlZR70r2pH92SLdW+fQec6RY=\",\r\n \"secondaryKey\": \"ngl7HNXRwNU+rERA/bDbsCeHxqgd2lg1SWjZHrqCDZs=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 1\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "747e1593-c329-49e1-b368-f4ccf6b75c06"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "pqtKPN2+REqMuoJUPGg1dA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "02605848-cbd4-4f82-9aec-09f2685ef2db"
+ ],
+ "x-ms-correlation-request-id": [
+ "02605848-cbd4-4f82-9aec-09f2685ef2db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113810Z:02605848-cbd4-4f82-9aec-09f2685ef2db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:09 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"A503qLQvyHoMt9604hX0Tp9d8Bx5PTg7i7zXi/r/aY4=\",\r\n \"secondaryKey\": \"ngl7HNXRwNU+rERA/bDbsCeHxqgd2lg1SWjZHrqCDZs=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 2\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7f1f22f0-6f41-47e7-923b-b3f33b25b620"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "vrUgPZD8ik60SOCr2AHw2A.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "c3e2945e-e219-4388-84ab-3fde3b66b854"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3e2945e-e219-4388-84ab-3fde3b66b854"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113810Z:c3e2945e-e219-4388-84ab-3fde3b66b854"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:10 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"A503qLQvyHoMt9604hX0Tp9d8Bx5PTg7i7zXi/r/aY4=\",\r\n \"secondaryKey\": \"DcxTYmntqcf8XP6z0jPOB/jenO4D/3BBHdyWHnnRZCs=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7739/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps3574?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzczOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczM1NzQ/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e39a5fcf-7137-4b0d-a764-9bd947faaf32"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "856I3nU9i0uFgaAzg/fXsw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "ead12d25-3e4f-4619-ac59-06406d87343b"
+ ],
+ "x-ms-correlation-request-id": [
+ "ead12d25-3e4f-4619-ac59-06406d87343b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113813Z:ead12d25-3e4f-4619-ac59-06406d87343b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:13 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7739?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzczOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b89fce74-1775-40f6-8e6c-8b562f00484f"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "6742c05a-1e5e-4970-915a-4ec891a478da"
+ ],
+ "x-ms-correlation-request-id": [
+ "6742c05a-1e5e-4970-915a-4ec891a478da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113815Z:6742c05a-1e5e-4970-915a-4ec891a478da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:15 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016a3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "ef139572-f0b1-4e3d-b452-41e871b3b6b7"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef139572-f0b1-4e3d-b452-41e871b3b6b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113830Z:ef139572-f0b1-4e3d-b452-41e871b3b6b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:29 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016a3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "17e508a7-ce01-4385-ba64-7050a905e46f"
+ ],
+ "x-ms-correlation-request-id": [
+ "17e508a7-ce01-4385-ba64-7050a905e46f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113845Z:17e508a7-ce01-4385-ba64-7050a905e46f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:44 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016a3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "f9c4fa28-0271-4370-91fa-3b6a2b4120d1"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9c4fa28-0271-4370-91fa-3b6a2b4120d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113900Z:f9c4fa28-0271-4370-91fa-3b6a2b4120d1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016a3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "166b7ffa-3cf0-4981-9325-ee8f5de2e2bb"
+ ],
+ "x-ms-correlation-request-id": [
+ "166b7ffa-3cf0-4981-9325-ee8f5de2e2bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113900Z:166b7ffa-3cf0-4981-9325-ee8f5de2e2bb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:39:00 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoteRenderingAccountOperations": [
+ "ps7739",
+ "ps3574"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "10438cf7-a794-4c7b-ad4c-5ddc1313ba7d"
+ }
+}
\ No newline at end of file
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperationsWithPiping.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperationsWithPiping.json
new file mode 100644
index 000000000000..6cb329d9bf38
--- /dev/null
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests/TestRemoteRenderingAccountOperationsWithPiping.json
@@ -0,0 +1,751 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7030?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "a6bcbb8a-d615-45f5-8d45-b06d18df9881"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "29"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "1e6a472c-ff21-472c-8391-33171008c003"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e6a472c-ff21-472c-8391-33171008c003"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113708Z:1e6a472c-ff21-472c-8391-33171008c003"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:08 GMT"
+ ],
+ "Content-Length": [
+ "165"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030\",\r\n \"name\": \"ps7030\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\"\r\n },\r\n \"location\": \"EastUS2\"\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "7ab03096-1781-4df0-a12c-961e24412d24"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "82"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023"
+ ],
+ "MS-CV": [
+ "XFFzmohAEUOiB7kPtokhcg.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "0a015641-8bea-4831-82f7-45324554af82"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a015641-8bea-4831-82f7-45324554af82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113714Z:0a015641-8bea-4831-82f7-45324554af82"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:13 GMT"
+ ],
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023\",\r\n \"name\": \"ps1023\",\r\n \"type\": \"Microsoft.MixedReality/remoteRenderingAccounts\",\r\n \"identity\": {\r\n \"type\": \"SystemAssigned\",\r\n \"principalId\": \"00c8277b-bd44-41f0-81fc-5ac6a96e9597\",\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\"\r\n },\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"21e67260-8594-4c40-89e8-c4759d665e05\"\r\n }\r\n}",
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023/listKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjMvbGlzdEtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "063c2b08-1433-4cbf-8725-9abc7b6e4fb6"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "8OqrSSjP50a5Y5yixSTJ8g.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "033b1b45-d6e4-4c57-83ba-f46a653cb862"
+ ],
+ "x-ms-correlation-request-id": [
+ "033b1b45-d6e4-4c57-83ba-f46a653cb862"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113714Z:033b1b45-d6e4-4c57-83ba-f46a653cb862"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:13 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"5H+x0bdP+QW/8WCJT1qJDWma5bvD0WWeB6NBr0kCRj4=\",\r\n \"secondaryKey\": \"iiBqnHOhmOSs7uVct8YWQatwNQu7nHlqtRtgaAjOKIg=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjMvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 1\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "9fbe5707-6432-4de2-807c-e7f47e1842c3"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "DxN4Hh0BCke5z2FDyTV9Jg.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "e6c71dba-d078-49e4-8b6d-d046ff012c66"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6c71dba-d078-49e4-8b6d-d046ff012c66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113714Z:e6c71dba-d078-49e4-8b6d-d046ff012c66"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:14 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"RMbt4Lqj37SWVjL6IRmLi/WS2+QMlS3nzG034AEE1I0=\",\r\n \"secondaryKey\": \"iiBqnHOhmOSs7uVct8YWQatwNQu7nHlqtRtgaAjOKIg=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023/regenerateKeys?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjMvcmVnZW5lcmF0ZUtleXM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"serial\": 2\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "d7a3103f-8599-4e4e-a796-b19ee7665e00"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "19"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "dkVplEk44EufJMHZTezO2w.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "ec04f072-1def-4297-aef5-e7f9695c8e41"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec04f072-1def-4297-aef5-e7f9695c8e41"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113715Z:ec04f072-1def-4297-aef5-e7f9695c8e41"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:14 GMT"
+ ],
+ "Content-Length": [
+ "123"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"primaryKey\": \"RMbt4Lqj37SWVjL6IRmLi/WS2+QMlS3nzG034AEE1I0=\",\r\n \"secondaryKey\": \"LC6Ak8prdhnppHP6mna2Ofq9fzz1OC5xn++1dZaYyU4=\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "5d0702f9-7644-4d26-a282-8adf698e4bfa"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "MS-CV": [
+ "Gsc4qk7vJkiBR/pM3OFyJQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "a8e22c44-7389-4e39-bb11-8501bd86d8d4"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8e22c44-7389-4e39-bb11-8501bd86d8d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113717Z:a8e22c44-7389-4e39-bb11-8501bd86d8d4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:16 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7030/providers/Microsoft.MixedReality/remoteRenderingAccounts/ps1023?api-version=2020-04-06-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzAzMC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9yZW1vdGVSZW5kZXJpbmdBY2NvdW50cy9wczEwMjM/YXBpLXZlcnNpb249MjAyMC0wNC0wNi1wcmV2aWV3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "315e8681-fe9d-446e-9e81-f7cd170c6bb1"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-failure-cause": [
+ "gateway"
+ ],
+ "x-ms-request-id": [
+ "e49b0bc3-3bc5-419c-9244-a9c348861247"
+ ],
+ "x-ms-correlation-request-id": [
+ "e49b0bc3-3bc5-419c-9244-a9c348861247"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113717Z:e49b0bc3-3bc5-419c-9244-a9c348861247"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:16 GMT"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "163"
+ ]
+ },
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/remoteRenderingAccounts/ps1023' under resource group 'ps7030' was not found.\"\r\n }\r\n}",
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7030?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzAzMD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e78447ad-ddee-460f-bbdc-3b633fc49bc0"
+ ],
+ "Accept-Language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "de94b19f-0d3c-4d78-b8ff-6c2cfd1e9d94"
+ ],
+ "x-ms-correlation-request-id": [
+ "de94b19f-0d3c-4d78-b8ff-6c2cfd1e9d94"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113717Z:de94b19f-0d3c-4d78-b8ff-6c2cfd1e9d94"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:17 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd016QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-request-id": [
+ "9cd93b94-470b-4840-99dd-1eb48e527f38"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cd93b94-470b-4840-99dd-1eb48e527f38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113732Z:9cd93b94-470b-4840-99dd-1eb48e527f38"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:32 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd016QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ ],
+ "Retry-After": [
+ "15"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-request-id": [
+ "77f3c658-12d4-490e-9c26-f08ec4dc3d20"
+ ],
+ "x-ms-correlation-request-id": [
+ "77f3c658-12d4-490e-9c26-f08ec4dc3d20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113747Z:77f3c658-12d4-490e-9c26-f08ec4dc3d20"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:37:46 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd016QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-request-id": [
+ "b7e2f8fc-dc0c-444e-b42e-259d06b800bc"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7e2f8fc-dc0c-444e-b42e-259d06b800bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113802Z:b7e2f8fc-dc0c-444e-b42e-259d06b800bc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcwMzAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjd016QXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.28207.03",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-request-id": [
+ "675a7563-a627-4ee8-b43c-aa378dcae316"
+ ],
+ "x-ms-correlation-request-id": [
+ "675a7563-a627-4ee8-b43c-aa378dcae316"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20200521T113802Z:675a7563-a627-4ee8-b43c-aa378dcae316"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Date": [
+ "Thu, 21 May 2020 11:38:01 GMT"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Content-Length": [
+ "0"
+ ]
+ },
+ "ResponseBody": "",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-RemoteRenderingAccountOperationsWithPiping": [
+ "ps7030",
+ "ps1023"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "10438cf7-a794-4c7b-ad4c-5ddc1313ba7d"
+ }
+}
\ No newline at end of file
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestListSpatialAnchorsAccounts.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestListSpatialAnchorsAccounts.json
index f27f1cb15d20..d5f37898f0bc 100644
--- a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestListSpatialAnchorsAccounts.json
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestListSpatialAnchorsAccounts.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps431?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNDMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7177?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzE3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7706bb30-980f-491f-957a-1a20d33da8de"
+ "b2558656-e2b7-477e-97b9-0df80a952e4c"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "52a9bdfa-3008-4dc6-80c9-43109e3ade95"
+ "46a090b3-48db-47a4-9cff-47a238076397"
],
"x-ms-correlation-request-id": [
- "52a9bdfa-3008-4dc6-80c9-43109e3ade95"
+ "46a090b3-48db-47a4-9cff-47a238076397"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074212Z:52a9bdfa-3008-4dc6-80c9-43109e3ade95"
+ "WESTUS:20200521T101016Z:46a090b3-48db-47a4-9cff-47a238076397"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,10 +51,10 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:11 GMT"
+ "Thu, 21 May 2020 10:10:16 GMT"
],
"Content-Length": [
- "163"
+ "165"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431\",\r\n \"name\": \"ps431\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177\",\r\n \"name\": \"ps7177\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "4c219306-6a53-453c-8097-e3f2ef892522"
+ "95b4cdf9-0c5a-4cfc-b78c-8e4350a99501"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -96,13 +96,13 @@
"11999"
],
"x-ms-request-id": [
- "ee95e569-c5bb-47a2-a527-59afe5bc0566"
+ "2b2b103f-6c6a-4f02-82cc-c001cfda077b"
],
"x-ms-correlation-request-id": [
- "ee95e569-c5bb-47a2-a527-59afe5bc0566"
+ "2b2b103f-6c6a-4f02-82cc-c001cfda077b"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074212Z:ee95e569-c5bb-47a2-a527-59afe5bc0566"
+ "WESTUS:20200521T101016Z:2b2b103f-6c6a-4f02-82cc-c001cfda077b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -111,7 +111,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:12 GMT"
+ "Thu, 21 May 2020 10:10:16 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -127,22 +127,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "24d64798-1f7c-4f8f-9a13-ba1e014440f9"
+ "311e85c8-4010-4c21-b7a8-a7459cd0d566"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -152,29 +152,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "frBuGfoKi0m2poLT2SoH9A.0"
+ "MS-CV": [
+ "/+uR4ob0iU6K8YaENvxtxw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11998"
],
+ "x-ms-request-id": [
+ "84d20ee0-0b2c-4899-9c3d-6eaaea284962"
+ ],
"x-ms-correlation-request-id": [
- "c619ac10-d130-4fad-9239-88518a392797"
+ "84d20ee0-0b2c-4899-9c3d-6eaaea284962"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074214Z:c619ac10-d130-4fad-9239-88518a392797"
+ "WESTUS:20200521T101018Z:84d20ee0-0b2c-4899-9c3d-6eaaea284962"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:13 GMT"
+ "Thu, 21 May 2020 10:10:18 GMT"
],
"Content-Length": [
- "526"
+ "431"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -183,26 +186,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"nextLink\": null,\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5811\",\r\n \"name\": \"ps5811\",\r\n \"type\": \"Microsoft.MixedReality/SpatialAnchorsAccounts\",\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountEndpoint\": \"https://mrc-anchor-prod.trafficmanager.net/Accounts/482358eb-4a70-4a85-8ff6-d584a1e50db3/\",\r\n \"accountId\": \"482358eb-4a70-4a85-8ff6-d584a1e50db3\"\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseBody": "{\r\n \"nextLink\": null,\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995\",\r\n \"name\": \"ps995\",\r\n \"type\": \"Microsoft.MixedReality/spatialAnchorsAccounts\",\r\n \"identity\": null,\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"46cebe07-7a7a-4c16-bd65-72b52c8a4d22\"\r\n }\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "23025720-2638-4d01-a8b2-bc2551a430e6"
+ "f80165b5-c8cc-4ce4-9b08-02757a1221ef"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -213,16 +216,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11997"
],
"x-ms-request-id": [
- "429ad460-dba9-480c-86e4-4787a07ad722"
+ "9f491101-723a-4a25-a2ea-f06f3e3c12f6"
],
"x-ms-correlation-request-id": [
- "429ad460-dba9-480c-86e4-4787a07ad722"
+ "9f491101-723a-4a25-a2ea-f06f3e3c12f6"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074215Z:429ad460-dba9-480c-86e4-4787a07ad722"
+ "WESTUS:20200521T101020Z:9f491101-723a-4a25-a2ea-f06f3e3c12f6"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -231,7 +234,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:15 GMT"
+ "Thu, 21 May 2020 10:10:20 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -247,22 +250,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5811?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHMvcHM1ODExP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzOTk1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"EastUS2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e166b9d3-9718-42d4-9de5-c00148df4ddc"
+ "ac090d05-9517-45e2-9d7d-f6689306425a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -279,31 +282,34 @@
"no-cache"
],
"Location": [
- "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5811"
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995"
],
- "x-ms-request-id": [
- "ycM0DpRbdkejL3bt2NqoSQ.0"
+ "MS-CV": [
+ "yURaiaMVXEWdKL38A4omUQ.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
+ "x-ms-request-id": [
+ "c1a987a7-b573-4890-aff5-1f272b719e8a"
+ ],
"x-ms-correlation-request-id": [
- "a8c25f9f-5de4-4f1f-9806-f41f8623e169"
+ "c1a987a7-b573-4890-aff5-1f272b719e8a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074214Z:a8c25f9f-5de4-4f1f-9806-f41f8623e169"
+ "WESTUS:20200521T101018Z:c1a987a7-b573-4890-aff5-1f272b719e8a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:13 GMT"
+ "Thu, 21 May 2020 10:10:18 GMT"
],
"Content-Length": [
- "498"
+ "403"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -312,26 +318,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5811\",\r\n \"name\": \"ps5811\",\r\n \"type\": \"Microsoft.MixedReality/SpatialAnchorsAccounts\",\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountEndpoint\": \"https://mrc-anchor-prod.trafficmanager.net/Accounts/482358eb-4a70-4a85-8ff6-d584a1e50db3/\",\r\n \"accountId\": \"482358eb-4a70-4a85-8ff6-d584a1e50db3\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995\",\r\n \"name\": \"ps995\",\r\n \"type\": \"Microsoft.MixedReality/spatialAnchorsAccounts\",\r\n \"identity\": null,\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"46cebe07-7a7a-4c16-bd65-72b52c8a4d22\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5811/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHMvcHM1ODExL2tleXM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995/listKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzOTk1L2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "df49e751-9aff-4352-8238-09b35cc3b6ce"
+ "082c42ad-0f75-445a-8ff1-946e3f3d2327"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -341,29 +347,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "ft+UFLQiyUyXCRmYCITbLw.0"
+ "MS-CV": [
+ "DQMk9tXct0SqzfX5/f0+jg.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "7f039dd5-cc15-45f7-9d21-3df9fa8a3f77"
],
"x-ms-correlation-request-id": [
- "415701dc-bea0-4a5c-8ba2-53884ca3e777"
+ "7f039dd5-cc15-45f7-9d21-3df9fa8a3f77"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074214Z:415701dc-bea0-4a5c-8ba2-53884ca3e777"
+ "WESTUS:20200521T101019Z:7f039dd5-cc15-45f7-9d21-3df9fa8a3f77"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:14 GMT"
+ "Thu, 21 May 2020 10:10:18 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -372,26 +381,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"K7qke4iRebTaOCiGmiX2T6OBTu/w7f++7oO/ilXG6z4=\",\r\n \"secondaryKey\": \"YCVkrPQcOu4B91adbm35ZOAsM4IIZMXzjVvRPlG0HqE=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"huuzXNn/GN9XHNW/lKu65EnSgBbqENjB0GpPlAJkhiM=\",\r\n \"secondaryKey\": \"BYiUYOa3H86q/sBIZuNzAm25c0F3BfjfG+M4lg3/lhs=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5811/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHMvcHM1ODExL2tleXM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzOTk1L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 1\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "2bec5174-0441-41d6-a583-cea6ea6473d5"
+ "5387985c-8db9-43fb-95e4-7a543e0fc842"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -407,29 +416,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "rYSpR2WpDEeNLg1ZsM/iZA.0"
+ "MS-CV": [
+ "qgY/L0dvVU6SLnsCxrhdgA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "e0f8dd05-cf21-4194-b223-60681dde4e31"
],
"x-ms-correlation-request-id": [
- "5edbb203-3095-4dc5-be6d-dd0e469d98ef"
+ "e0f8dd05-cf21-4194-b223-60681dde4e31"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074214Z:5edbb203-3095-4dc5-be6d-dd0e469d98ef"
+ "WESTUS:20200521T101019Z:e0f8dd05-cf21-4194-b223-60681dde4e31"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:14 GMT"
+ "Thu, 21 May 2020 10:10:19 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -438,26 +450,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"bJcdWWkcWxmWXt2alW4MRIJ3G2sZQ39GDLFp7ioImfs=\",\r\n \"secondaryKey\": \"YCVkrPQcOu4B91adbm35ZOAsM4IIZMXzjVvRPlG0HqE=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"erx1TK0HZKpIKNG2AGKdogu21OoOo8V8cpWi1nfi/FI=\",\r\n \"secondaryKey\": \"BYiUYOa3H86q/sBIZuNzAm25c0F3BfjfG+M4lg3/lhs=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5811/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHMvcHM1ODExL2tleXM/YXBpLXZlcnNpb249MjAxOS0wMi0yOC1wcmV2aWV3",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzOTk1L3JlZ2VuZXJhdGVLZXlzP2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 2\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b5627e8b-f57a-430c-a208-f3ef4380f9c3"
+ "a1bb64e6-232b-48fb-9d0e-ba32f0735167"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -473,29 +485,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "Rp3r8IRsJUu6+nG4xMY9rw.0"
+ "MS-CV": [
+ "vbG+5iSmcUGo8AVUam8AhA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "6d854d8b-aab2-4178-b237-c14acefc7a73"
],
"x-ms-correlation-request-id": [
- "06770cde-4b58-4498-90cc-7ab571347f73"
+ "6d854d8b-aab2-4178-b237-c14acefc7a73"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074215Z:06770cde-4b58-4498-90cc-7ab571347f73"
+ "WESTUS:20200521T101019Z:6d854d8b-aab2-4178-b237-c14acefc7a73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:14 GMT"
+ "Thu, 21 May 2020 10:10:19 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -504,26 +519,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"bJcdWWkcWxmWXt2alW4MRIJ3G2sZQ39GDLFp7ioImfs=\",\r\n \"secondaryKey\": \"7nHB1qMyi+SRuTJVlXSP1KNGfqA7vpiGipKKknLF31w=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"erx1TK0HZKpIKNG2AGKdogu21OoOo8V8cpWi1nfi/FI=\",\r\n \"secondaryKey\": \"uFCjUVEuevbnq+BFocOcPpxsHZMv/mo9t9QDs7w6pKU=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps431/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5811?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDMxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWl4ZWRSZWFsaXR5L3NwYXRpYWxBbmNob3JzQWNjb3VudHMvcHM1ODExP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7177/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps995?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzE3Ny9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzOTk1P2FwaS12ZXJzaW9uPTIwMjAtMDUtMDE=",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b8a90003-e927-4229-a88e-26ce76eaa1e5"
+ "c9c1acd2-ed60-4c6c-ba48-a6afadee03d7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -533,26 +548,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "F6T7xNSQlEqrqQyFsRpMZA.0"
+ "MS-CV": [
+ "z9RVdxzlcEC2fps5bwMHvw.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
"14999"
],
+ "x-ms-request-id": [
+ "3e1e0f72-735a-45e6-80c7-2c3dafff59e5"
+ ],
"x-ms-correlation-request-id": [
- "c3e78655-1862-4026-a821-70ab5e92e254"
+ "3e1e0f72-735a-45e6-80c7-2c3dafff59e5"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074215Z:c3e78655-1862-4026-a821-70ab5e92e254"
+ "WESTUS:20200521T101020Z:3e1e0f72-735a-45e6-80c7-2c3dafff59e5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:42:15 GMT"
+ "Thu, 21 May 2020 10:10:20 GMT"
],
"Expires": [
"-1"
@@ -565,22 +583,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps431?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNDMxP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7177?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzE3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "41f437a7-2e2c-4148-b32f-074e386eed9b"
+ "66a972b6-5f97-45bc-8a07-812e48a9370e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -591,7 +609,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -600,13 +618,13 @@
"14999"
],
"x-ms-request-id": [
- "444681ac-540d-4f29-9473-3d6dbb7dc5cd"
+ "1d3f3c33-db4a-4b5f-bb11-34bde7d428ee"
],
"x-ms-correlation-request-id": [
- "444681ac-540d-4f29-9473-3d6dbb7dc5cd"
+ "1d3f3c33-db4a-4b5f-bb11-34bde7d428ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074216Z:444681ac-540d-4f29-9473-3d6dbb7dc5cd"
+ "WESTUS:20200521T101020Z:1d3f3c33-db4a-4b5f-bb11-34bde7d428ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -615,7 +633,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:15 GMT"
+ "Thu, 21 May 2020 10:10:20 GMT"
],
"Expires": [
"-1"
@@ -628,16 +646,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -648,7 +666,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -657,13 +675,13 @@
"11999"
],
"x-ms-request-id": [
- "79800057-947f-4de5-a33c-75fedd80ee7f"
+ "baac0ac7-d2b1-4ad7-95d2-b2646ae345c7"
],
"x-ms-correlation-request-id": [
- "79800057-947f-4de5-a33c-75fedd80ee7f"
+ "baac0ac7-d2b1-4ad7-95d2-b2646ae345c7"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074231Z:79800057-947f-4de5-a33c-75fedd80ee7f"
+ "WESTUS:20200521T101035Z:baac0ac7-d2b1-4ad7-95d2-b2646ae345c7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -672,7 +690,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:31 GMT"
+ "Thu, 21 May 2020 10:10:34 GMT"
],
"Expires": [
"-1"
@@ -685,16 +703,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -705,7 +723,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -714,13 +732,13 @@
"11998"
],
"x-ms-request-id": [
- "9b970b87-6833-4e8e-814a-4a06dee5d995"
+ "075bd714-8eba-4f88-bb51-dbcd2710c03d"
],
"x-ms-correlation-request-id": [
- "9b970b87-6833-4e8e-814a-4a06dee5d995"
+ "075bd714-8eba-4f88-bb51-dbcd2710c03d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074246Z:9b970b87-6833-4e8e-814a-4a06dee5d995"
+ "WESTUS:20200521T101050Z:075bd714-8eba-4f88-bb51-dbcd2710c03d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -729,7 +747,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:45 GMT"
+ "Thu, 21 May 2020 10:10:49 GMT"
],
"Expires": [
"-1"
@@ -742,16 +760,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -765,13 +783,13 @@
"11997"
],
"x-ms-request-id": [
- "8717c4d5-97f8-43c4-873f-d06fa72ae6bf"
+ "62cf4812-d011-49d6-a597-c06368fb31f2"
],
"x-ms-correlation-request-id": [
- "8717c4d5-97f8-43c4-873f-d06fa72ae6bf"
+ "62cf4812-d011-49d6-a597-c06368fb31f2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074301Z:8717c4d5-97f8-43c4-873f-d06fa72ae6bf"
+ "WESTUS:20200521T101105Z:62cf4812-d011-49d6-a597-c06368fb31f2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -780,7 +798,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:00 GMT"
+ "Thu, 21 May 2020 10:11:05 GMT"
],
"Expires": [
"-1"
@@ -793,16 +811,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1TMVhSVk5VVlZNaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW5kbGMzUjFjeUo5P2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzcxNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjeE56Y3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -816,13 +834,13 @@
"11996"
],
"x-ms-request-id": [
- "e9d8608a-4992-4b30-a151-8218d9313bdd"
+ "27e7f9eb-f0d0-421c-8b75-08f1ac6dfa68"
],
"x-ms-correlation-request-id": [
- "e9d8608a-4992-4b30-a151-8218d9313bdd"
+ "27e7f9eb-f0d0-421c-8b75-08f1ac6dfa68"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074301Z:e9d8608a-4992-4b30-a151-8218d9313bdd"
+ "WESTUS:20200521T101105Z:27e7f9eb-f0d0-421c-8b75-08f1ac6dfa68"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -831,7 +849,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:00 GMT"
+ "Thu, 21 May 2020 10:11:05 GMT"
],
"Expires": [
"-1"
@@ -846,8 +864,8 @@
],
"Names": {
"Test-ListSpatialAnchorsAccounts": [
- "ps431",
- "ps5811"
+ "ps7177",
+ "ps995"
]
},
"Variables": {
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperations.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperations.json
index d3a0e5e84f7b..224f9e62a438 100644
--- a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperations.json
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperations.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps4190?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNDE5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7721?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzcyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "987c3a93-0f77-4cbc-b4ff-e1e5fb07177c"
+ "ac670e3d-b693-4f42-bb26-3786aa47063e"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "4d6a1909-c723-49ac-bb8f-03fa5534bbc7"
+ "58079042-d2ec-4f89-a1d0-b532fb0f5fa0"
],
"x-ms-correlation-request-id": [
- "4d6a1909-c723-49ac-bb8f-03fa5534bbc7"
+ "58079042-d2ec-4f89-a1d0-b532fb0f5fa0"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074121Z:4d6a1909-c723-49ac-bb8f-03fa5534bbc7"
+ "WESTUS:20200521T100917Z:58079042-d2ec-4f89-a1d0-b532fb0f5fa0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:41:21 GMT"
+ "Thu, 21 May 2020 10:09:16 GMT"
],
"Content-Length": [
"165"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190\",\r\n \"name\": \"ps4190\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721\",\r\n \"name\": \"ps7721\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"EastUS2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "7dbb752a-c580-4605-949d-4ec56b8abe43"
+ "5b7271b2-2779-4d67-b569-9e252d3c6da7"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,31 +99,34 @@
"no-cache"
],
"Location": [
- "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5285"
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533"
],
- "x-ms-request-id": [
- "OCcpbJvbxkieEfO2pYmb0Q.0"
+ "MS-CV": [
+ "k10hvKLoFE2roXwVpbrSKg.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
"1199"
],
+ "x-ms-request-id": [
+ "04a4996d-4d9e-48d9-ad90-5b9c59d8dcfb"
+ ],
"x-ms-correlation-request-id": [
- "8766892c-7e17-48dd-aa01-e75bec1a3c3b"
+ "04a4996d-4d9e-48d9-ad90-5b9c59d8dcfb"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074122Z:8766892c-7e17-48dd-aa01-e75bec1a3c3b"
+ "WESTUS:20200521T100919Z:04a4996d-4d9e-48d9-ad90-5b9c59d8dcfb"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:22 GMT"
+ "Thu, 21 May 2020 10:09:18 GMT"
],
"Content-Length": [
- "499"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,26 +135,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5285\",\r\n \"name\": \"ps5285\",\r\n \"type\": \"Microsoft.MixedReality/SpatialAnchorsAccounts\",\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountEndpoint\": \"https://mrc-anchor-prod.trafficmanager.net/Accounts/97257e0f-3ece-4df1-bd00-50f8b5afd1b0/\",\r\n \"accountId\": \"97257e0f-3ece-4df1-bd00-50f8b5afd1b0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533\",\r\n \"name\": \"ps2533\",\r\n \"type\": \"Microsoft.MixedReality/spatialAnchorsAccounts\",\r\n \"identity\": null,\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"19e2a5ad-5fa0-4177-bd5b-01502508689a\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "9c58d6d8-2ce3-482d-bbc7-a1677f9e39c6"
+ "eeeb8de7-6e0e-411e-a274-2d92216179c1"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,29 +164,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "9PXLmGDdykiIiD+8AD+zjA.0"
+ "MS-CV": [
+ "PxsgnIZfFE+QirtuEb/ZmA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-reads": [
"11999"
],
+ "x-ms-request-id": [
+ "245be277-785b-4249-807c-85b640a9d11f"
+ ],
"x-ms-correlation-request-id": [
- "d38bbe29-fb73-4be1-8f50-7ba64fc79120"
+ "245be277-785b-4249-807c-85b640a9d11f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074122Z:d38bbe29-fb73-4be1-8f50-7ba64fc79120"
+ "WESTUS:20200521T100919Z:245be277-785b-4249-807c-85b640a9d11f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:22 GMT"
+ "Thu, 21 May 2020 10:09:18 GMT"
],
"Content-Length": [
- "499"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps5285\",\r\n \"name\": \"ps5285\",\r\n \"type\": \"Microsoft.MixedReality/SpatialAnchorsAccounts\",\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountEndpoint\": \"https://mrc-anchor-prod.trafficmanager.net/Accounts/97257e0f-3ece-4df1-bd00-50f8b5afd1b0/\",\r\n \"accountId\": \"97257e0f-3ece-4df1-bd00-50f8b5afd1b0\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533\",\r\n \"name\": \"ps2533\",\r\n \"type\": \"Microsoft.MixedReality/spatialAnchorsAccounts\",\r\n \"identity\": null,\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"19e2a5ad-5fa0-4177-bd5b-01502508689a\"\r\n }\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "346e1393-09b9-47a8-b96d-437bcaca0fc4"
+ "1d1b8a99-778f-4bea-8bc0-f2bedddee03a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -225,13 +231,13 @@
"gateway"
],
"x-ms-request-id": [
- "fbdd710a-653e-445c-9ae9-8ef12f89bab2"
+ "e0cbe0dd-e0eb-4f6a-8816-c7af02dca641"
],
"x-ms-correlation-request-id": [
- "fbdd710a-653e-445c-9ae9-8ef12f89bab2"
+ "e0cbe0dd-e0eb-4f6a-8816-c7af02dca641"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074124Z:fbdd710a-653e-445c-9ae9-8ef12f89bab2"
+ "WESTUS:20200521T100921Z:e0cbe0dd-e0eb-4f6a-8816-c7af02dca641"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -240,7 +246,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:41:24 GMT"
+ "Thu, 21 May 2020 10:09:21 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -252,26 +258,26 @@
"162"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/spatialAnchorsAccounts/ps5285' under resource group 'ps4190' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/spatialAnchorsAccounts/ps2533' under resource group 'ps7721' was not found.\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533/listKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMy9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b0f20318-ca8f-4bf1-a974-3af104c10a77"
+ "401ab58d-7e60-4b9f-8412-009fbb45eb90"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -281,29 +287,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "eWyZWgdC+UuDNnqf8pLv1g.0"
+ "MS-CV": [
+ "cnlM1mGzNUWR8BMo90ZIpg.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "f9c5ee5c-2344-4ba4-9e01-9c21aae7eb52"
],
"x-ms-correlation-request-id": [
- "ae837cfa-8f87-40a8-831f-15a3c3cb6c51"
+ "f9c5ee5c-2344-4ba4-9e01-9c21aae7eb52"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074123Z:ae837cfa-8f87-40a8-831f-15a3c3cb6c51"
+ "WESTUS:20200521T100919Z:f9c5ee5c-2344-4ba4-9e01-9c21aae7eb52"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:22 GMT"
+ "Thu, 21 May 2020 10:09:19 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -312,26 +321,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"rYH7ImmQk5Oh2gYdGv+sx+X2/1m5ysZLn3o2E5pLNtg=\",\r\n \"secondaryKey\": \"MC4cFcuWmXfN6RjiahcOaTXu1YuC4mSJ2ZRLJ+oiSGg=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"whkMaUu/NKzayvrNujc3D8w0BKwWc63d7bwkOjVG3/Y=\",\r\n \"secondaryKey\": \"5vYDcMURZRGtMu/NdPGZBBvIQCUfrf3UkOJpHYNqrlY=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMy9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 1\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "6efbce8b-330b-4b35-8154-718e489d5b5d"
+ "d8e4551d-c395-48b1-ae99-83188a1f8074"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -347,29 +356,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "Z5ou8sbtRESw/Ku2DelcQQ.0"
+ "MS-CV": [
+ "sBalSWsHuk6QY5cOrbz+fA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "479dc056-5836-489f-9572-7c4cef44f13e"
],
"x-ms-correlation-request-id": [
- "b0ac3175-3aca-4e8e-ba95-c47f55a467d4"
+ "479dc056-5836-489f-9572-7c4cef44f13e"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074123Z:b0ac3175-3aca-4e8e-ba95-c47f55a467d4"
+ "WESTUS:20200521T100920Z:479dc056-5836-489f-9572-7c4cef44f13e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:23 GMT"
+ "Thu, 21 May 2020 10:09:19 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -378,26 +390,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"xHh1CQ3uv/UNIb1l9jUs6MgDEnuB7wWPdaLOs4k9tMQ=\",\r\n \"secondaryKey\": \"MC4cFcuWmXfN6RjiahcOaTXu1YuC4mSJ2ZRLJ+oiSGg=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"12LzaHdz1g8k8szwdtYKm5/iN02+RLYA56iM8xmjSPI=\",\r\n \"secondaryKey\": \"5vYDcMURZRGtMu/NdPGZBBvIQCUfrf3UkOJpHYNqrlY=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMy9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 2\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "3b5af57f-cd64-4bc9-9a87-0d9b5e4d69d1"
+ "aa13d310-0f84-4284-a095-09f89cd95070"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -413,29 +425,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "gPX60z6fdki0MYM81XxN7w.0"
+ "MS-CV": [
+ "P/nJmFZCXEKp/kK93eomxA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "75d304a5-246b-4867-8b2a-e20f9694c322"
],
"x-ms-correlation-request-id": [
- "c641e407-9189-4c6c-aa13-f32388e86d0a"
+ "75d304a5-246b-4867-8b2a-e20f9694c322"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074123Z:c641e407-9189-4c6c-aa13-f32388e86d0a"
+ "WESTUS:20200521T100920Z:75d304a5-246b-4867-8b2a-e20f9694c322"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:23 GMT"
+ "Thu, 21 May 2020 10:09:20 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -444,26 +459,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"xHh1CQ3uv/UNIb1l9jUs6MgDEnuB7wWPdaLOs4k9tMQ=\",\r\n \"secondaryKey\": \"o8gs42xIPSZN/VVOnpZ0ZpjQjSkoHiIMU/3tVCrLpBY=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"12LzaHdz1g8k8szwdtYKm5/iN02+RLYA56iM8xmjSPI=\",\r\n \"secondaryKey\": \"p7sR8Zypt2F07e9yCsLrbSbXgQROqqOyE6JVRJAWQyg=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps4190/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5285?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNDE5MC9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTI4NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps7721/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps2533?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzNzcyMS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzMjUzMz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "322c2f03-191b-4a82-8c38-fa9c28559883"
+ "d95e36fc-818c-497a-b18d-c472961f3178"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -473,26 +488,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "npRSapkB8UKgBwtzZWlsRw.0"
+ "MS-CV": [
+ "p3a/eQQgbki7x9BaFhGM/A.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14999"
+ "14998"
+ ],
+ "x-ms-request-id": [
+ "2da09a4f-d49a-4a99-8df3-9523cc3416b8"
],
"x-ms-correlation-request-id": [
- "5e1b7d6a-a2e1-4f48-a786-7c4c5f3ba5f4"
+ "2da09a4f-d49a-4a99-8df3-9523cc3416b8"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074124Z:5e1b7d6a-a2e1-4f48-a786-7c4c5f3ba5f4"
+ "WESTUS:20200521T100921Z:2da09a4f-d49a-4a99-8df3-9523cc3416b8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:41:24 GMT"
+ "Thu, 21 May 2020 10:09:21 GMT"
],
"Expires": [
"-1"
@@ -505,22 +523,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps4190?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNDE5MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps7721?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzNzcyMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0f84e0cb-5bbb-452d-9942-6f85b11c3b16"
+ "a1e8594f-8705-4c4c-9d78-7118eaa9f2c0"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -531,7 +549,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -540,13 +558,13 @@
"14999"
],
"x-ms-request-id": [
- "cd6693dc-4b5c-4f64-b1a8-053c8c1b0efe"
+ "3666a131-5b3a-4eb1-804b-cb6695716f5f"
],
"x-ms-correlation-request-id": [
- "cd6693dc-4b5c-4f64-b1a8-053c8c1b0efe"
+ "3666a131-5b3a-4eb1-804b-cb6695716f5f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074125Z:cd6693dc-4b5c-4f64-b1a8-053c8c1b0efe"
+ "WESTUS:20200521T100922Z:3666a131-5b3a-4eb1-804b-cb6695716f5f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -555,7 +573,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:41:24 GMT"
+ "Thu, 21 May 2020 10:09:21 GMT"
],
"Expires": [
"-1"
@@ -568,16 +586,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -588,22 +606,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
+ "11999"
],
"x-ms-request-id": [
- "9923ac84-f6d0-4c98-b41a-9c3f1ea55aa4"
+ "afae0ee1-966e-4e03-a9bc-09e8e9d0fb99"
],
"x-ms-correlation-request-id": [
- "9923ac84-f6d0-4c98-b41a-9c3f1ea55aa4"
+ "afae0ee1-966e-4e03-a9bc-09e8e9d0fb99"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074140Z:9923ac84-f6d0-4c98-b41a-9c3f1ea55aa4"
+ "WESTUS:20200521T100937Z:afae0ee1-966e-4e03-a9bc-09e8e9d0fb99"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -612,7 +630,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:41:39 GMT"
+ "Thu, 21 May 2020 10:09:37 GMT"
],
"Expires": [
"-1"
@@ -625,16 +643,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -645,22 +663,22 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
+ "11998"
],
"x-ms-request-id": [
- "e130b40e-61b5-4192-8742-ff74497f4062"
+ "e89eb323-317d-4d0e-8360-1c91a1b36aa2"
],
"x-ms-correlation-request-id": [
- "e130b40e-61b5-4192-8742-ff74497f4062"
+ "e89eb323-317d-4d0e-8360-1c91a1b36aa2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074155Z:e130b40e-61b5-4192-8742-ff74497f4062"
+ "WESTUS:20200521T100952Z:e89eb323-317d-4d0e-8360-1c91a1b36aa2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -669,7 +687,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:41:54 GMT"
+ "Thu, 21 May 2020 10:09:52 GMT"
],
"Expires": [
"-1"
@@ -682,16 +700,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -702,16 +720,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
+ "11997"
],
"x-ms-request-id": [
- "65ad0300-f1b8-4229-882d-e5145cf2992e"
+ "75c18542-281f-4edb-a381-d3387618643d"
],
"x-ms-correlation-request-id": [
- "65ad0300-f1b8-4229-882d-e5145cf2992e"
+ "75c18542-281f-4edb-a381-d3387618643d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074210Z:65ad0300-f1b8-4229-882d-e5145cf2992e"
+ "WESTUS:20200521T101007Z:75c18542-281f-4edb-a381-d3387618643d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -720,7 +738,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:10 GMT"
+ "Thu, 21 May 2020 10:10:07 GMT"
],
"Expires": [
"-1"
@@ -733,16 +751,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQxOTAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpReE9UQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM01qRXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -753,16 +771,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "11996"
],
"x-ms-request-id": [
- "98bd091e-5064-4665-b2ae-c580715b5b82"
+ "78db5b9d-1aa6-4e2a-87d0-6ef7b52ba64f"
],
"x-ms-correlation-request-id": [
- "98bd091e-5064-4665-b2ae-c580715b5b82"
+ "78db5b9d-1aa6-4e2a-87d0-6ef7b52ba64f"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074210Z:98bd091e-5064-4665-b2ae-c580715b5b82"
+ "WESTUS:20200521T101007Z:78db5b9d-1aa6-4e2a-87d0-6ef7b52ba64f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -771,7 +789,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:42:10 GMT"
+ "Thu, 21 May 2020 10:10:07 GMT"
],
"Expires": [
"-1"
@@ -786,8 +804,8 @@
],
"Names": {
"Test-SpatialAnchorsAccountOperations": [
- "ps4190",
- "ps5285"
+ "ps7721",
+ "ps2533"
]
},
"Variables": {
diff --git a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperationsWithPiping.json b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperationsWithPiping.json
index 9d66f46b4a56..4ff88f6bbd14 100644
--- a/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperationsWithPiping.json
+++ b/src/MixedReality/MixedReality.Test/SessionRecords/Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests/TestSpatialAnchorsAccountOperationsWithPiping.json
@@ -1,22 +1,22 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps3119?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzMzExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps9016?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzOTAxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"West US\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c6669efa-dee5-4fbb-94db-75222b08a1e9"
+ "184c8365-0257-4cb4-93c8-dc5b2b2cd5ee"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -36,13 +36,13 @@
"1199"
],
"x-ms-request-id": [
- "00afa482-0e9a-4e55-b56f-912aec810517"
+ "569c7213-4b50-4d13-8e6b-d020a3f148d2"
],
"x-ms-correlation-request-id": [
- "00afa482-0e9a-4e55-b56f-912aec810517"
+ "569c7213-4b50-4d13-8e6b-d020a3f148d2"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074303Z:00afa482-0e9a-4e55-b56f-912aec810517"
+ "WESTUS:20200521T101110Z:569c7213-4b50-4d13-8e6b-d020a3f148d2"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -51,7 +51,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:02 GMT"
+ "Thu, 21 May 2020 10:11:09 GMT"
],
"Content-Length": [
"165"
@@ -63,26 +63,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119\",\r\n \"name\": \"ps3119\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016\",\r\n \"name\": \"ps9016\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"EastUS2\"\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "1ba4d0c1-ce93-49f6-9bbc-348e5337d3ff"
+ "a342be9f-1538-4580-8631-4d6b07456fbe"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -99,31 +99,34 @@
"no-cache"
],
"Location": [
- "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps8675"
+ "subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644"
],
- "x-ms-request-id": [
- "GTqL6Q6YYkeQ/C/HnfrUmA.0"
+ "MS-CV": [
+ "N2R2ArmnrU6y+s4ayloLqA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "941a0198-8b93-43d9-be9e-fbd0291c7f54"
],
"x-ms-correlation-request-id": [
- "bfbd1139-82bc-4c1c-ad47-9e0dd71e41d2"
+ "941a0198-8b93-43d9-be9e-fbd0291c7f54"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074304Z:bfbd1139-82bc-4c1c-ad47-9e0dd71e41d2"
+ "WESTUS:20200521T101111Z:941a0198-8b93-43d9-be9e-fbd0291c7f54"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:43:03 GMT"
+ "Thu, 21 May 2020 10:11:11 GMT"
],
"Content-Length": [
- "499"
+ "405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,26 +135,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/SpatialAnchorsAccounts/ps8675\",\r\n \"name\": \"ps8675\",\r\n \"type\": \"Microsoft.MixedReality/SpatialAnchorsAccounts\",\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountEndpoint\": \"https://mrc-anchor-prod.trafficmanager.net/Accounts/9da18881-e2b9-47fa-8ef1-38313a99de70/\",\r\n \"accountId\": \"9da18881-e2b9-47fa-8ef1-38313a99de70\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644\",\r\n \"name\": \"ps5644\",\r\n \"type\": \"Microsoft.MixedReality/spatialAnchorsAccounts\",\r\n \"identity\": null,\r\n \"location\": \"EastUS2\",\r\n \"plan\": null,\r\n \"sku\": null,\r\n \"kind\": null,\r\n \"tags\": {},\r\n \"properties\": {\r\n \"accountDomain\": \"mixedreality.azure.com\",\r\n \"accountId\": \"34d888a4-03bd-441a-b0f7-52069114865b\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644/listKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0NC9saXN0S2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
+ "RequestMethod": "POST",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "8c53aac2-5865-4eb4-933a-cfcc0d3dc6bf"
+ "fcd30696-3ab0-4c5a-a36d-2144221b1e20"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -161,29 +164,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "6VmXnCMSx0WzkCCMoWfbDA.0"
+ "MS-CV": [
+ "HePRiRPUQEayKpjuLMODJA.0"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "30b03f0e-17f7-4883-aead-2efb3991b8ee"
],
"x-ms-correlation-request-id": [
- "5467e9ca-f972-4fbc-a3c8-e14f0fab31bd"
+ "30b03f0e-17f7-4883-aead-2efb3991b8ee"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074304Z:5467e9ca-f972-4fbc-a3c8-e14f0fab31bd"
+ "WESTUS:20200521T101112Z:30b03f0e-17f7-4883-aead-2efb3991b8ee"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:43:04 GMT"
+ "Thu, 21 May 2020 10:11:12 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -192,26 +198,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"RaGTIDfKqeAfmLg0mZfvSihyYO+nDNJuWvOSzLTB/xw=\",\r\n \"secondaryKey\": \"H3FsMae12UFXHJimha7u6O3QIAIzsd2F8hp7VaM7DF8=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"rdL1Wkf4Ns+sH83Z0qAaxrGHzKJuoSl32AP5BlQTHhg=\",\r\n \"secondaryKey\": \"BS6wEx5H/zLNGc3SVR8eVsfTDmLhoEhFnlHrcuud1lY=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0NC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 1\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "c974ac4e-df84-405a-9df5-63cf6d15b263"
+ "6436fb75-634a-46dd-a36b-1633fd6b7d99"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -227,29 +233,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "EKis6E8I80yX8EF9wh7gtA.0"
+ "MS-CV": [
+ "7bxqREn0akWyMZzyoHPtJA.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "88e3ca10-1660-4c83-abdf-6dc47bdf9d5a"
],
"x-ms-correlation-request-id": [
- "59d31ab2-ec90-4202-8571-bf06e0340446"
+ "88e3ca10-1660-4c83-abdf-6dc47bdf9d5a"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074305Z:59d31ab2-ec90-4202-8571-bf06e0340446"
+ "WESTUS:20200521T101112Z:88e3ca10-1660-4c83-abdf-6dc47bdf9d5a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:43:04 GMT"
+ "Thu, 21 May 2020 10:11:12 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -258,26 +267,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"WnElNCW00+SpP/vQV8S7XxG3ZLzRIdXu6ONz6fi9tlg=\",\r\n \"secondaryKey\": \"H3FsMae12UFXHJimha7u6O3QIAIzsd2F8hp7VaM7DF8=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"SP2XsKRzgmAmfw2xPIXf6Qx+BajG/zi30MxupthqetA=\",\r\n \"secondaryKey\": \"BS6wEx5H/zLNGc3SVR8eVsfTDmLhoEhFnlHrcuud1lY=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675/keys?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NS9rZXlzP2FwaS12ZXJzaW9uPTIwMTktMDItMjgtcHJldmlldw==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644/regenerateKeys?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0NC9yZWdlbmVyYXRlS2V5cz9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "POST",
"RequestBody": "{\r\n \"serial\": 2\r\n}",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d09bfd96-913c-4090-81e7-c510f97fd7d8"
+ "802bcf63-6faa-4f02-b678-da37c0622c60"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -293,29 +302,32 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "iHvESWiACEuekGTo4537ww.0"
+ "MS-CV": [
+ "UIP6QqkLqkG3LPlvIFApvg.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "6f077df3-d95a-4d20-8f94-81c004440daa"
],
"x-ms-correlation-request-id": [
- "78fab738-ff2b-406b-b0c7-3417f6caca55"
+ "6f077df3-d95a-4d20-8f94-81c004440daa"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074305Z:78fab738-ff2b-406b-b0c7-3417f6caca55"
+ "WESTUS:20200521T101113Z:6f077df3-d95a-4d20-8f94-81c004440daa"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:43:05 GMT"
+ "Thu, 21 May 2020 10:11:13 GMT"
],
"Content-Length": [
- "231"
+ "123"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -324,26 +336,26 @@
"-1"
]
},
- "ResponseBody": "{\r\n \"primaryKey\": \"WnElNCW00+SpP/vQV8S7XxG3ZLzRIdXu6ONz6fi9tlg=\",\r\n \"secondaryKey\": \"FQLQOOw5G0cO0N6I75LYqAs9bsbwsF1Rgx6zVHZDnRs=\",\r\n}", // [SuppressMessage("Microsoft.Security", "CS001:SecretInline", Justification="...")]
+ "ResponseBody": "{\r\n \"primaryKey\": \"SP2XsKRzgmAmfw2xPIXf6Qx+BajG/zi30MxupthqetA=\",\r\n \"secondaryKey\": \"qNPCzkVq20PsCjnM/hLh+6xsQ9oBwkNRtfMuL2IUOsg=\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "bd096fce-8eba-41c5-a84c-7c7a4061cf9b"
+ "1dc4932b-69cb-496d-be98-cb87f62d0f80"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -353,26 +365,29 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "hP7crNoiDkuKM8GoQ4YCaw.0"
+ "MS-CV": [
+ "B/Oh6a4jGUitJYDQHvKH6w.0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
],
"x-ms-ratelimit-remaining-subscription-deletes": [
- "14998"
+ "14999"
+ ],
+ "x-ms-request-id": [
+ "e08a8698-1c0b-484c-af32-d7a7d14faf73"
],
"x-ms-correlation-request-id": [
- "aa3a7444-de3a-4c86-8897-e8ac16f0965e"
+ "e08a8698-1c0b-484c-af32-d7a7d14faf73"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074306Z:aa3a7444-de3a-4c86-8897-e8ac16f0965e"
+ "WESTUS:20200521T101113Z:e08a8698-1c0b-484c-af32-d7a7d14faf73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "X-Content-Type-Options": [
- "nosniff"
- ],
"Date": [
- "Tue, 12 Feb 2019 07:43:05 GMT"
+ "Thu, 21 May 2020 10:11:13 GMT"
],
"Expires": [
"-1"
@@ -385,22 +400,22 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps3119/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps8675?api-version=2019-02-28-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzMzExOS9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzODY3NT9hcGktdmVyc2lvbj0yMDE5LTAyLTI4LXByZXZpZXc=",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/ps9016/providers/Microsoft.MixedReality/spatialAnchorsAccounts/ps5644?api-version=2020-05-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlR3JvdXBzL3BzOTAxNi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1peGVkUmVhbGl0eS9zcGF0aWFsQW5jaG9yc0FjY291bnRzL3BzNTY0ND9hcGktdmVyc2lvbj0yMDIwLTA1LTAx",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "b777654c-2d87-48b9-bf3a-278d3fe12e03"
+ "9b09e3d2-e686-407b-8754-caf36f9d224a"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.MixedReality.MixedRealityClient/0.9.0.preview"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.MixedReality.MixedRealityClient/1.0.0.0"
]
},
"ResponseHeaders": {
@@ -414,13 +429,13 @@
"gateway"
],
"x-ms-request-id": [
- "a888b5f8-e6bc-45af-a666-ca8656d182d6"
+ "e8e3f57a-452c-40ca-8107-75ce569520f3"
],
"x-ms-correlation-request-id": [
- "a888b5f8-e6bc-45af-a666-ca8656d182d6"
+ "e8e3f57a-452c-40ca-8107-75ce569520f3"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074306Z:a888b5f8-e6bc-45af-a666-ca8656d182d6"
+ "WESTUS:20200521T101113Z:e8e3f57a-452c-40ca-8107-75ce569520f3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -429,7 +444,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:05 GMT"
+ "Thu, 21 May 2020 10:11:13 GMT"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -441,26 +456,26 @@
"162"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/spatialAnchorsAccounts/ps8675' under resource group 'ps3119' was not found.\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.MixedReality/spatialAnchorsAccounts/ps5644' under resource group 'ps9016' was not found.\"\r\n }\r\n}",
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps3119?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzMzExOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourcegroups/ps9016?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL3Jlc291cmNlZ3JvdXBzL3BzOTAxNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "d9eb9e12-de52-41a9-a486-b7c664f090d1"
+ "d72f6b63-3361-4484-953c-946d49c8fd69"
],
"Accept-Language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -471,7 +486,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -480,13 +495,13 @@
"14999"
],
"x-ms-request-id": [
- "28cea14a-ab42-47c3-a266-4ce3c93bbcc8"
+ "b3c0f270-52aa-44aa-8eb8-efc3ba2ca640"
],
"x-ms-correlation-request-id": [
- "28cea14a-ab42-47c3-a266-4ce3c93bbcc8"
+ "b3c0f270-52aa-44aa-8eb8-efc3ba2ca640"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074306Z:28cea14a-ab42-47c3-a266-4ce3c93bbcc8"
+ "WESTUS:20200521T101113Z:b3c0f270-52aa-44aa-8eb8-efc3ba2ca640"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -495,7 +510,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:06 GMT"
+ "Thu, 21 May 2020 10:11:13 GMT"
],
"Expires": [
"-1"
@@ -508,16 +523,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -528,7 +543,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -537,13 +552,13 @@
"11999"
],
"x-ms-request-id": [
- "1638803d-9ae1-4748-9d7e-050531320d55"
+ "eead62ab-7f4f-4907-badf-758a40dcf202"
],
"x-ms-correlation-request-id": [
- "1638803d-9ae1-4748-9d7e-050531320d55"
+ "eead62ab-7f4f-4907-badf-758a40dcf202"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074321Z:1638803d-9ae1-4748-9d7e-050531320d55"
+ "WESTUS:20200521T101129Z:eead62ab-7f4f-4907-badf-758a40dcf202"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -552,7 +567,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:21 GMT"
+ "Thu, 21 May 2020 10:11:28 GMT"
],
"Expires": [
"-1"
@@ -565,16 +580,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -585,7 +600,7 @@
"no-cache"
],
"Location": [
- "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
+ "https://management.azure.com/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01"
],
"Retry-After": [
"15"
@@ -594,13 +609,13 @@
"11998"
],
"x-ms-request-id": [
- "4b8e04aa-2adf-4626-a186-3b3ce94a4e06"
+ "2df84216-7150-451c-96bc-d0197555bafc"
],
"x-ms-correlation-request-id": [
- "4b8e04aa-2adf-4626-a186-3b3ce94a4e06"
+ "2df84216-7150-451c-96bc-d0197555bafc"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074336Z:4b8e04aa-2adf-4626-a186-3b3ce94a4e06"
+ "WESTUS:20200521T101144Z:2df84216-7150-451c-96bc-d0197555bafc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -609,7 +624,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:36 GMT"
+ "Thu, 21 May 2020 10:11:43 GMT"
],
"Expires": [
"-1"
@@ -622,16 +637,16 @@
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -645,13 +660,13 @@
"11997"
],
"x-ms-request-id": [
- "31240d65-1731-46de-a308-49deb824d6ff"
+ "b7a9db3d-5841-467d-b669-97e704014955"
],
"x-ms-correlation-request-id": [
- "31240d65-1731-46de-a308-49deb824d6ff"
+ "b7a9db3d-5841-467d-b669-97e704014955"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074351Z:31240d65-1731-46de-a308-49deb824d6ff"
+ "WESTUS:20200521T101159Z:b7a9db3d-5841-467d-b669-97e704014955"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -660,7 +675,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:51 GMT"
+ "Thu, 21 May 2020 10:11:58 GMT"
],
"Expires": [
"-1"
@@ -673,16 +688,16 @@
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxMTktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE1Ua3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
+ "RequestUri": "/subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMTYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMTA0MzhjZjctYTc5NC00YzdiLWFkNGMtNWRkYzEzMTNiYTdkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01UWXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.27129.04",
+ "FxVersion/4.6.28207.03",
"OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.17763.",
- "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14"
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13"
]
},
"ResponseHeaders": {
@@ -696,13 +711,13 @@
"11996"
],
"x-ms-request-id": [
- "7d05eb66-007e-4b07-bc6c-9d65cfacc243"
+ "a4ba0465-453b-43ef-a03b-2b8318fa640d"
],
"x-ms-correlation-request-id": [
- "7d05eb66-007e-4b07-bc6c-9d65cfacc243"
+ "a4ba0465-453b-43ef-a03b-2b8318fa640d"
],
"x-ms-routing-request-id": [
- "WESTUS2:20190212T074352Z:7d05eb66-007e-4b07-bc6c-9d65cfacc243"
+ "WESTUS:20200521T101159Z:a4ba0465-453b-43ef-a03b-2b8318fa640d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -711,7 +726,7 @@
"nosniff"
],
"Date": [
- "Tue, 12 Feb 2019 07:43:51 GMT"
+ "Thu, 21 May 2020 10:11:58 GMT"
],
"Expires": [
"-1"
@@ -726,8 +741,8 @@
],
"Names": {
"Test-SpatialAnchorsAccountOperationsWithPiping": [
- "ps3119",
- "ps8675"
+ "ps9016",
+ "ps5644"
]
},
"Variables": {
diff --git a/src/MixedReality/MixedReality/Az.MixedReality.psd1 b/src/MixedReality/MixedReality/Az.MixedReality.psd1
index b25597985f2b..fb0b18a8582a 100644
--- a/src/MixedReality/MixedReality/Az.MixedReality.psd1
+++ b/src/MixedReality/MixedReality/Az.MixedReality.psd1
@@ -74,9 +74,8 @@ NestedModules = @('Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll')
FunctionsToExport = @()
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
-CmdletsToExport = 'Get-AzSpatialAnchorsAccount', 'Get-AzSpatialAnchorsAccountKey',
- 'New-AzSpatialAnchorsAccount', 'New-AzSpatialAnchorsAccountKey',
- 'Remove-AzSpatialAnchorsAccount'
+CmdletsToExport = 'Get-AzSpatialAnchorsAccount', 'Get-AzSpatialAnchorsAccountKey', 'New-AzSpatialAnchorsAccount', 'New-AzSpatialAnchorsAccountKey', 'Remove-AzSpatialAnchorsAccount',
+ 'Get-AzRemoteRenderingAccount', 'Get-AzRemoteRenderingAccountKey', 'New-AzRemoteRenderingAccount', 'New-AzRemoteRenderingAccountKey', 'Remove-AzRemoteRenderingAccount'
# Variables to export from this module
# VariablesToExport = @()
diff --git a/src/MixedReality/MixedReality/ChangeLog.md b/src/MixedReality/MixedReality/ChangeLog.md
index 8892a104926a..ffb32415f9e0 100644
--- a/src/MixedReality/MixedReality/ChangeLog.md
+++ b/src/MixedReality/MixedReality/ChangeLog.md
@@ -18,6 +18,7 @@
- Additional information about change #1
-->
## Upcoming Release
+* Introducing Azure Remote Rendering Management Cmdlets
## Version 0.1.3
* Update references in .psd1 to use relative path
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/Models/PSSpatialAnchorsAccountKeys.cs b/src/MixedReality/MixedReality/Common/Models/PSAccountKeys.cs
similarity index 80%
rename from src/MixedReality/MixedReality/SpatialAnchorsAccount/Models/PSSpatialAnchorsAccountKeys.cs
rename to src/MixedReality/MixedReality/Common/Models/PSAccountKeys.cs
index 34ed45d80437..c0e4f67dc2ae 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/Models/PSSpatialAnchorsAccountKeys.cs
+++ b/src/MixedReality/MixedReality/Common/Models/PSAccountKeys.cs
@@ -12,13 +12,13 @@
// limitations under the License.
// ----------------------------------------------------------------------------------
-namespace Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount
+namespace Microsoft.Azure.Commands.MixedReality
{
using Management.MixedReality.Models;
- public sealed class PSSpatialAnchorsAccountKeys : SpatialAnchorsAccountKeys
+ public sealed class PSAccountKeys : AccountKeys
{
- public PSSpatialAnchorsAccountKeys(SpatialAnchorsAccountKeys another) :
+ public PSAccountKeys(AccountKeys another) :
base(
primaryKey: another.PrimaryKey,
secondaryKey: another.SecondaryKey)
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/ResourceId.cs b/src/MixedReality/MixedReality/Common/ResourceId.cs
similarity index 74%
rename from src/MixedReality/MixedReality/SpatialAnchorsAccount/ResourceId.cs
rename to src/MixedReality/MixedReality/Common/ResourceId.cs
index ccc7c9e3c602..8789b7bbbb40 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/ResourceId.cs
+++ b/src/MixedReality/MixedReality/Common/ResourceId.cs
@@ -14,7 +14,7 @@
using System;
using System.Text.RegularExpressions;
-namespace Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount
+namespace Microsoft.Azure.Commands.MixedReality
{
internal class ResourceId
{
@@ -22,8 +22,9 @@ static class RegEx
{
internal const string Subscription = "subscription";
internal const string ResourceGroup = "resourceGroup";
- internal const string SpatialAnchorsAccount = "spatialAnchorAccount";
- internal readonly static Regex Id = new Regex($@"\/subscriptions\/(?<{Subscription}>.*)\/resourcegroups\/(?<{ResourceGroup}>.*)\/providers\/Microsoft\.MixedReality\/SpatialAnchorsAccounts\/(?<{SpatialAnchorsAccount}>.*)", RegexOptions.IgnoreCase | RegexOptions.Singleline);
+ internal const string ResourceType = "resourceType";
+ internal const string ResourceName = "resourceName";
+ internal readonly static Regex Id = new Regex($@"\/subscriptions\/(?<{Subscription}>.*)\/resourcegroups\/(?<{ResourceGroup}>.*)\/providers\/Microsoft\.MixedReality\/(?<{ResourceType}>.*)\/(?<{ResourceName}>.*)", RegexOptions.IgnoreCase | RegexOptions.Singleline);
}
internal ResourceId(string resourceId)
@@ -34,7 +35,8 @@ internal ResourceId(string resourceId)
{
SubsciptionId = new Guid(match.Groups[RegEx.Subscription].Value);
ResourceGroupName = match.Groups[RegEx.ResourceGroup].Value;
- SpatialAnchorsAccountName = match.Groups[RegEx.SpatialAnchorsAccount].Value;
+ ResourceType = match.Groups[RegEx.ResourceType].Value;
+ ResourceName = match.Groups[RegEx.ResourceName].Value;
}
else
{
@@ -44,6 +46,7 @@ internal ResourceId(string resourceId)
internal Guid SubsciptionId { get; private set; }
internal string ResourceGroupName { get; private set; }
- internal string SpatialAnchorsAccountName { get; private set; }
+ internal string ResourceType { get; private set; }
+ internal string ResourceName { get; private set; }
}
}
diff --git a/src/MixedReality/MixedReality/MixedReality.csproj b/src/MixedReality/MixedReality/MixedReality.csproj
index a6ad3c2209ee..ab4e806ec4b9 100644
--- a/src/MixedReality/MixedReality/MixedReality.csproj
+++ b/src/MixedReality/MixedReality/MixedReality.csproj
@@ -5,7 +5,7 @@
-
+
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/Extensions.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/Extensions.cs
new file mode 100644
index 000000000000..962d5ed30c22
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/Extensions.cs
@@ -0,0 +1,52 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+using System;
+using System.Collections.Generic;
+using System.Linq;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Microsoft.Azure.Management.MixedReality;
+ using Microsoft.Azure.Management.MixedReality.Models;
+ using Microsoft.Rest.Azure;
+
+ internal static class Extensions
+ {
+ internal static RemoteRenderingAccount Find(this IRemoteRenderingAccountsOperations operations, string resourceGroupName, string remoterenderingAccountName)
+ {
+ return operations.EnumerateByResourceGroup(resourceGroupName).FirstOrDefault(account => string.Equals(account.Name, remoterenderingAccountName, StringComparison.InvariantCultureIgnoreCase));
+ }
+
+ internal static IEnumerable EnumerateBySubscription(this IRemoteRenderingAccountsOperations operations)
+ {
+ return Enumerate(() => operations.ListBySubscription(), link => operations.ListBySubscriptionNext(link)).ToList();
+ }
+
+ internal static IEnumerable EnumerateByResourceGroup(this IRemoteRenderingAccountsOperations operations, string resourceGroupName)
+ {
+ return Enumerate(() => operations.ListByResourceGroup(resourceGroupName), link => operations.ListByResourceGroupNext(link)).ToList();
+ }
+
+ private static IEnumerable Enumerate(Func> getFirstPage, Func> getNextPage)
+ {
+ for (var page = getFirstPage(); page != null; page = !string.IsNullOrWhiteSpace(page.NextPageLink) ? getNextPage(page.NextPageLink) : null)
+ {
+ foreach (var item in page)
+ {
+ yield return item;
+ }
+ }
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccount.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccount.cs
new file mode 100644
index 000000000000..cb50fd85e127
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccount.cs
@@ -0,0 +1,80 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System.Linq;
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Management.MixedReality;
+ using ResourceManager.Common;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Get", AzureRMConstants.AzureRMPrefix + ResourceType, DefaultParameterSetName = ListParameterSet)]
+ [OutputType(typeof(PSRemoteRenderingAccount))]
+ public sealed class GetRemoteRenderingAccount : RemoteRenderingAccountCmdletBase
+ {
+ public const string GetParameterSet = "GetParameterSet";
+ public const string ListParameterSet = "ListParameterSet";
+
+ [Parameter(Mandatory = true, ParameterSetName = GetParameterSet, HelpMessage = "Resource Group Name.")]
+ [Parameter(Mandatory = false, ParameterSetName = ListParameterSet, HelpMessage = "Resource Group Name.")]
+ [ResourceGroupCompleter()]
+ [Alias("ResourceGroup")]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = GetParameterSet, HelpMessage = "Remote Rendering Account Name.")]
+ [ResourceNameCompleter(FullQualifiedResourceType, nameof(ResourceGroupName))]
+ [Alias("RemoteRenderingAccountName", "AccountName")]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of Remote Rendering Account.")]
+ [ResourceIdCompleter(FullQualifiedResourceType)]
+ [Alias("Id")]
+ public string ResourceId { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ var result = default(object);
+ var enumeration = default(bool);
+
+ if (ParameterSetName == ListParameterSet)
+ {
+ var accounts = string.IsNullOrEmpty(this.ResourceGroupName)
+ ? Client.RemoteRenderingAccounts.EnumerateBySubscription()
+ : Client.RemoteRenderingAccounts.EnumerateByResourceGroup(this.ResourceGroupName);
+
+ result = accounts.Select(_ => new PSRemoteRenderingAccount(_));
+ enumeration = true;
+ }
+ else
+ {
+ if (ParameterSetName == ResourceIdParameterSet)
+ {
+ var resourceId = new ResourceId(ResourceId);
+
+ ResourceGroupName = resourceId.ResourceGroupName;
+ Name = resourceId.ResourceName;
+ }
+
+ var account = Client.RemoteRenderingAccounts.Get(this.ResourceGroupName, this.Name);
+
+ result = new PSRemoteRenderingAccount(account);
+ enumeration = false;
+ }
+
+ WriteObject(result, enumeration);
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccountKey.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccountKey.cs
new file mode 100644
index 000000000000..cb66f7cc8199
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/GetRemoteRenderingAccountKey.cs
@@ -0,0 +1,68 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Management.MixedReality;
+ using ResourceManager.Common;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Get", AzureRMConstants.AzureRMPrefix + ResourceType + "Key", DefaultParameterSetName = DefaultParameterSet)]
+ [OutputType(typeof(PSAccountKeys))]
+ public sealed class GetRemoteRenderingAccountKeys : RemoteRenderingAccountCmdletBase
+ {
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Resource Group Name.")]
+ [ResourceGroupCompleter]
+ [Alias("ResourceGroup")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Remote Rendering Account Name.")]
+ [ResourceNameCompleter(FullQualifiedResourceType, nameof(ResourceGroupName))]
+ [Alias("RemoteRenderingAccountName", "AccountName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of Remote Rendering Account.")]
+ [ResourceIdCompleter(FullQualifiedResourceType)]
+ [Alias("Id")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSet, ValueFromPipeline = true, HelpMessage = "The custom domain object.")]
+ [ValidateNotNull]
+ public PSRemoteRenderingAccount InputObject { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ParameterSetName == ResourceIdParameterSet)
+ {
+ var resourceId = new ResourceId(ResourceId);
+
+ ResourceGroupName = resourceId.ResourceGroupName;
+ Name = resourceId.ResourceName;
+ }
+
+ if (ParameterSetName == PipelineParameterSet)
+ {
+ ResourceGroupName = InputObject.ResourceGroupName;
+ Name = InputObject.Name;
+ }
+
+ var result = Client.RemoteRenderingAccounts.ListKeys(ResourceGroupName, Name);
+
+ WriteObject(result);
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/Models/PSRemoteRenderingAccount.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/Models/PSRemoteRenderingAccount.cs
new file mode 100644
index 000000000000..36ae0e3ed8a5
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/Models/PSRemoteRenderingAccount.cs
@@ -0,0 +1,46 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+using System.Collections.Generic;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Management.MixedReality.Models;
+
+ public sealed class PSRemoteRenderingAccount : RemoteRenderingAccount
+ {
+ private ResourceId resourceId;
+
+ public PSRemoteRenderingAccount(RemoteRenderingAccount another) :
+ base(
+ location: another.Location,
+ id: another.Id,
+ name: another.Name,
+ type: another.Type,
+ tags: new Dictionary(another.Tags),
+ accountId: another.AccountId,
+ accountDomain: another.AccountDomain)
+ {
+ resourceId = new ResourceId(this.Id);
+ }
+
+ public string ResourceGroupName
+ {
+ get
+ {
+ return resourceId.ResourceGroupName;
+ }
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccount.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccount.cs
new file mode 100644
index 000000000000..d0732da12f28
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccount.cs
@@ -0,0 +1,56 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using ResourceManager.Common;
+ using ResourceManager.Common.ArgumentCompleters;
+ using Management.MixedReality;
+ using Management.MixedReality.Models;
+
+ [Cmdlet("New", AzureRMConstants.AzureRMPrefix + ResourceType, DefaultParameterSetName = DefaultParameterSet, SupportsShouldProcess = true)]
+ [OutputType(typeof(PSRemoteRenderingAccount))]
+ public sealed class NewRemoteRenderingAccount : RemoteRenderingAccountCmdletBase
+ {
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Resource Group Name.")]
+ [ResourceGroupCompleter]
+ [Alias("ResourceGroup")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Remote Rendering Account Name.")]
+ [ResourceNameCompleter(FullQualifiedResourceType, nameof(ResourceGroupName))]
+ [Alias("RemoteRenderingAccountName", "AccountName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Remote Rendering Account Location.")]
+ [LocationCompleter(FullQualifiedResourceType)]
+ [ValidateNotNullOrEmpty]
+ public string Location { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ShouldProcess(ResourceType, MyInvocation.InvocationName))
+ {
+ var identity = new RemoteRenderingAccountIdentity(type: ResourceIdentityType.SystemAssigned);
+ var account = new RemoteRenderingAccount(location: Location, name: Name, type: FullQualifiedResourceType, identity: identity);
+ account = Client.RemoteRenderingAccounts.Create(this.ResourceGroupName, this.Name, account);
+
+ WriteObject(new PSRemoteRenderingAccount(account));
+ }
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccountKey.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccountKey.cs
new file mode 100644
index 000000000000..e9b87755f688
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/NewRemoteRenderingAccountKey.cs
@@ -0,0 +1,120 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Management.MixedReality;
+ using ResourceManager.Common;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("New", AzureRMConstants.AzureRMPrefix + ResourceType + "Key", SupportsShouldProcess = true)]
+ [OutputType(typeof(PSAccountKeys))]
+ public sealed class NewRemoteRenderingAccountKey : RemoteRenderingAccountCmdletBase
+ {
+ public const string RegeneratePrimaryKeyParameterSetName = "RegeneratePrimaryKeyParameterSet";
+ public const string RegenerateSecondaryKeyParameterSetName = "RegenerateSecondaryKeyParameterSet";
+
+ public const string ResourceIdParameterSetPrefix = "ResourceId";
+ public const string PipelineParameterSetPrefix = "Pipeline";
+
+ public const string ResourceGroupNameHelpMessage = "Resource Group Name.";
+ public const string NameHelpMessage = "Remote Rendering Account Name.";
+ public const string ResourceIdHelpMessage = "Resource ID of Remote Rendering Account.";
+ public const string InputObjectHelpMessage = "The custom domain object.";
+ public const string PrimarySwitchHelpMessage = "Regenerate primary key of Remote Rendering Account.";
+ public const string SecondarySwitchHelpMessage = "Regenerate secondary key of Remote Rendering Account.";
+
+ [Parameter(Mandatory = true, ParameterSetName = RegeneratePrimaryKeyParameterSetName, HelpMessage = ResourceGroupNameHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = RegenerateSecondaryKeyParameterSetName, HelpMessage = ResourceGroupNameHelpMessage)]
+ [ResourceGroupCompleter]
+ [Alias("ResourceGroup")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RegeneratePrimaryKeyParameterSetName, HelpMessage = NameHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = RegenerateSecondaryKeyParameterSetName, HelpMessage = NameHelpMessage)]
+ [ResourceNameCompleter(FullQualifiedResourceType, nameof(ResourceGroupName))]
+ [Alias("RemoteRenderingAccountName", "AccountName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSetPrefix + RegeneratePrimaryKeyParameterSetName, ValueFromPipelineByPropertyName = true, HelpMessage = ResourceIdHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSetPrefix + RegenerateSecondaryKeyParameterSetName, ValueFromPipelineByPropertyName = true, HelpMessage = ResourceIdHelpMessage)]
+ [ResourceIdCompleter(FullQualifiedResourceType)]
+ [Alias("Id")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSetPrefix + RegeneratePrimaryKeyParameterSetName, ValueFromPipeline = true, HelpMessage = InputObjectHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSetPrefix + RegenerateSecondaryKeyParameterSetName, ValueFromPipeline = true, HelpMessage = InputObjectHelpMessage)]
+ [ValidateNotNull]
+ public PSRemoteRenderingAccount InputObject { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RegeneratePrimaryKeyParameterSetName, HelpMessage = PrimarySwitchHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSetPrefix + RegeneratePrimaryKeyParameterSetName, HelpMessage = PrimarySwitchHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSetPrefix + RegeneratePrimaryKeyParameterSetName, HelpMessage = PrimarySwitchHelpMessage)]
+ public SwitchParameter Primary { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = RegenerateSecondaryKeyParameterSetName, HelpMessage = SecondarySwitchHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSetPrefix + RegenerateSecondaryKeyParameterSetName, HelpMessage = SecondarySwitchHelpMessage)]
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSetPrefix + RegenerateSecondaryKeyParameterSetName, HelpMessage = SecondarySwitchHelpMessage)]
+ public SwitchParameter Secondary { get; set; }
+
+ [Parameter()]
+ public SwitchParameter Force { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ParameterSetName.StartsWith(ResourceIdParameterSetPrefix))
+ {
+ var resourceId = new ResourceId(ResourceId);
+
+ ResourceGroupName = resourceId.ResourceGroupName;
+ Name = resourceId.ResourceName;
+ }
+
+ if (ParameterSetName.StartsWith(PipelineParameterSetPrefix))
+ {
+ ResourceGroupName = InputObject.ResourceGroupName;
+ Name = InputObject.Name;
+ }
+
+ var serial = default(int?);
+ var key = default(string);
+
+ if (Primary.IsPresent)
+ {
+ serial = 1;
+ key = "primary";
+ }
+ else if (Secondary.IsPresent)
+ {
+ serial = 2;
+ key = "secondary";
+ }
+
+ ConfirmAction(
+ Force,
+ $"Are you sure you want to regenerate {key} key of Remote Rendering Account '{Name}' in resource group '{ResourceGroupName}' ?",
+ this.MyInvocation.InvocationName,
+ Name,
+ () =>
+ {
+ var result = Client.RemoteRenderingAccounts.RegenerateKeys(ResourceGroupName, Name, serial);
+
+ WriteObject(result);
+ });
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoteRenderingAccountCmdletBase.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoteRenderingAccountCmdletBase.cs
new file mode 100644
index 000000000000..75cfe7f1182c
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoteRenderingAccountCmdletBase.cs
@@ -0,0 +1,23 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ public abstract class RemoteRenderingAccountCmdletBase : MixedRealityManagementCmdletBase
+ {
+ public const string ResourceProviderNamespace = "Microsoft.MixedReality";
+ public const string ResourceType = "RemoteRenderingAccount";
+ public const string FullQualifiedResourceType = ResourceProviderNamespace + "/" + ResourceType + "s";
+ };
+}
diff --git a/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoveRemoteRenderingAccount.cs b/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoveRemoteRenderingAccount.cs
new file mode 100644
index 000000000000..54182e68e0ee
--- /dev/null
+++ b/src/MixedReality/MixedReality/RemoteRenderingAccount/RemoveRemoteRenderingAccount.cs
@@ -0,0 +1,77 @@
+// ----------------------------------------------------------------------------------
+//
+// Copyright Microsoft Corporation
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+// http://www.apache.org/licenses/LICENSE-2.0
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+// ----------------------------------------------------------------------------------
+using System.Management.Automation;
+
+namespace Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount
+{
+ using Management.MixedReality;
+ using ResourceManager.Common;
+ using ResourceManager.Common.ArgumentCompleters;
+
+ [Cmdlet("Remove", AzureRMConstants.AzureRMPrefix + ResourceType, DefaultParameterSetName = DefaultParameterSet, SupportsShouldProcess = true)]
+ [OutputType(typeof(bool))]
+ public sealed class RemoveRemoteRenderingAccount : RemoteRenderingAccountCmdletBase
+ {
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Resource Group Name.")]
+ [ResourceGroupCompleter]
+ [Alias("ResourceGroup")]
+ [ValidateNotNullOrEmpty]
+ public string ResourceGroupName { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Remote Rendering Account Name.")]
+ [ResourceNameCompleter(FullQualifiedResourceType, nameof(ResourceGroupName))]
+ [Alias("RemoteRenderingAccountName", "AccountName")]
+ [ValidateNotNullOrEmpty]
+ public string Name { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = ResourceIdParameterSet, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of Remote Rendering Account.")]
+ [ResourceIdCompleter(FullQualifiedResourceType)]
+ [Alias("Id")]
+ public string ResourceId { get; set; }
+
+ [Parameter(Mandatory = true, ParameterSetName = PipelineParameterSet, ValueFromPipeline = true, HelpMessage = "The custom domain object.")]
+ [ValidateNotNull]
+ public PSRemoteRenderingAccount InputObject { get; set; }
+
+ [Parameter(Mandatory = false, ValueFromPipelineByPropertyName = true, HelpMessage = "Return object if specified.")]
+ public SwitchParameter PassThru { get; set; }
+
+ public override void ExecuteCmdlet()
+ {
+ if (ParameterSetName == ResourceIdParameterSet)
+ {
+ var resourceId = new ResourceId(ResourceId);
+
+ ResourceGroupName = resourceId.ResourceGroupName;
+ Name = resourceId.ResourceName;
+ }
+
+ if (ParameterSetName == PipelineParameterSet)
+ {
+ ResourceGroupName = InputObject.ResourceGroupName;
+ Name = InputObject.Name;
+ }
+
+ if (ShouldProcess(Name, MyInvocation.InvocationName))
+ {
+ Client.RemoteRenderingAccounts.Delete(ResourceGroupName, Name);
+ }
+
+ if (PassThru)
+ {
+ WriteObject(true);
+ }
+ }
+ }
+}
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccount.cs b/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccount.cs
index bb77332f7766..dc5ef9619379 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccount.cs
+++ b/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccount.cs
@@ -65,7 +65,7 @@ public override void ExecuteCmdlet()
var resourceId = new ResourceId(ResourceId);
ResourceGroupName = resourceId.ResourceGroupName;
- Name = resourceId.SpatialAnchorsAccountName;
+ Name = resourceId.ResourceName;
}
var account = Client.SpatialAnchorsAccounts.Get(this.ResourceGroupName, this.Name);
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccountKey.cs b/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccountKey.cs
index 6f1acda16268..4b6d8407b8ac 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccountKey.cs
+++ b/src/MixedReality/MixedReality/SpatialAnchorsAccount/GetSpatialAnchorsAccountKey.cs
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount
using ResourceManager.Common.ArgumentCompleters;
[Cmdlet("Get", AzureRMConstants.AzureRMPrefix + ResourceType + "Key", DefaultParameterSetName = DefaultParameterSet)]
- [OutputType(typeof(PSSpatialAnchorsAccountKeys))]
+ [OutputType(typeof(PSAccountKeys))]
public sealed class GetSpatialAnchorsAccountKeys : SpatialAnchorsAccountCmdletBase
{
[Parameter(Mandatory = true, ParameterSetName = DefaultParameterSet, HelpMessage = "Resource Group Name.")]
@@ -51,7 +51,7 @@ public override void ExecuteCmdlet()
var resourceId = new ResourceId(ResourceId);
ResourceGroupName = resourceId.ResourceGroupName;
- Name = resourceId.SpatialAnchorsAccountName;
+ Name = resourceId.ResourceName;
}
if (ParameterSetName == PipelineParameterSet)
@@ -60,7 +60,7 @@ public override void ExecuteCmdlet()
Name = InputObject.Name;
}
- var result = Client.SpatialAnchorsAccounts.GetKeys(ResourceGroupName, Name);
+ var result = Client.SpatialAnchorsAccounts.ListKeys(ResourceGroupName, Name);
WriteObject(result);
}
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/NewSpatialAnchorsAccountKey.cs b/src/MixedReality/MixedReality/SpatialAnchorsAccount/NewSpatialAnchorsAccountKey.cs
index 9268b906b2bc..d6bc84cdad9f 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/NewSpatialAnchorsAccountKey.cs
+++ b/src/MixedReality/MixedReality/SpatialAnchorsAccount/NewSpatialAnchorsAccountKey.cs
@@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount
using ResourceManager.Common.ArgumentCompleters;
[Cmdlet("New", AzureRMConstants.AzureRMPrefix + ResourceType + "Key", SupportsShouldProcess = true)]
- [OutputType(typeof(PSSpatialAnchorsAccountKeys))]
+ [OutputType(typeof(PSAccountKeys))]
public sealed class NewSpatialAnchorsAccountKey : SpatialAnchorsAccountCmdletBase
{
public const string RegeneratePrimaryKeyParameterSetName = "RegeneratePrimaryKeyParameterSet";
@@ -81,7 +81,7 @@ public override void ExecuteCmdlet()
var resourceId = new ResourceId(ResourceId);
ResourceGroupName = resourceId.ResourceGroupName;
- Name = resourceId.SpatialAnchorsAccountName;
+ Name = resourceId.ResourceName;
}
if (ParameterSetName.StartsWith(PipelineParameterSetPrefix))
diff --git a/src/MixedReality/MixedReality/SpatialAnchorsAccount/RemoveSpatialAnchorsAccount.cs b/src/MixedReality/MixedReality/SpatialAnchorsAccount/RemoveSpatialAnchorsAccount.cs
index 974eddfd5175..1388218a5746 100644
--- a/src/MixedReality/MixedReality/SpatialAnchorsAccount/RemoveSpatialAnchorsAccount.cs
+++ b/src/MixedReality/MixedReality/SpatialAnchorsAccount/RemoveSpatialAnchorsAccount.cs
@@ -54,7 +54,7 @@ public override void ExecuteCmdlet()
var resourceId = new ResourceId(ResourceId);
ResourceGroupName = resourceId.ResourceGroupName;
- Name = resourceId.SpatialAnchorsAccountName;
+ Name = resourceId.ResourceName;
}
if (ParameterSetName == PipelineParameterSet)
diff --git a/src/MixedReality/MixedReality/help/Az.MixedReality.md b/src/MixedReality/MixedReality/help/Az.MixedReality.md
index 6ca76b3960fa..3c62c61e4218 100644
--- a/src/MixedReality/MixedReality/help/Az.MixedReality.md
+++ b/src/MixedReality/MixedReality/help/Az.MixedReality.md
@@ -15,7 +15,7 @@ Azure PowerShell Module of Mixed Reality Cloud Service
Get or list Spatial Anchors Account(s) in certain Subscription and Resource Group.
### [New-AzSpatialAnchorsAccount](New-AzSpatialAnchorsAccount.md)
-Create a new Spatial Intelligence Account in certain Subscription, Resource Group and Region.
+Create a new Spatial Anchors Account in certain Subscription, Resource Group and Region.
### [Remove-AzSpatialAnchorsAccount](Remove-AzSpatialAnchorsAccount.md)
Delete specified Spatial Anchors Account from certain Subscription and Resource Group.
@@ -24,4 +24,19 @@ Delete specified Spatial Anchors Account from certain Subscription and Resource
Get developer keys of Spatial Anchors Account.
### [New-AzSpatialAnchorsAccountKey](New-AzSpatialAnchorsAccountKey.md)
-Regenerate specified developer key of Spatial Anchors Account.
\ No newline at end of file
+Regenerate specified developer key of Spatial Anchors Account.
+
+### [Get-AzRemoteRenderingAccount](Get-AzRemoteRenderingAccount.md)
+Get or list Remote Rendering Account(s) in certain Subscription and Resource Group.
+
+### [New-AzRemoteRenderingAccount](New-AzRemoteRenderingAccount.md)
+Create a new Remote Rendering Account in certain Subscription, Resource Group and Region.
+
+### [Remove-AzRemoteRenderingAccount](Remove-AzRemoteRenderingAccount.md)
+Delete specified Remote Rendering Account from certain Subscription and Resource Group.
+
+### [Get-AzRemoteRenderingAccountKey](Get-AzRemoteRenderingAccountKey.md)
+Get developer keys of Remote Rendering Account.
+
+### [New-AzRemoteRenderingAccountKey](New-AzRemoteRenderingAccountKey.md)
+Regenerate specified developer key of Remote Rendering Account.
\ No newline at end of file
diff --git a/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccount.md b/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccount.md
new file mode 100644
index 000000000000..42614e743b84
--- /dev/null
+++ b/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccount.md
@@ -0,0 +1,180 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll-Help.xml
+Module Name: Az.MixedReality
+online version: https://docs.microsoft.com/en-us/powershell/module/az.mixedreality/get-azremoterenderingaccount
+schema: 2.0.0
+---
+
+# Get-AzRemoteRenderingAccount
+
+## SYNOPSIS
+Get Remote Rendering Account
+
+## SYNTAX
+
+### ListParameterSet (Default)
+```
+Get-AzRemoteRenderingAccount [-ResourceGroupName ]
+ [-DefaultProfile ] []
+```
+
+### GetParameterSet (Default)
+```
+Get-AzRemoteRenderingAccount -ResourceGroupName -Name
+ [-DefaultProfile ] []
+```
+
+### ResourceIdParameterSet
+```
+Get-AzRemoteRenderingAccount -ResourceId
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+Get or list Remote Rendering Account(s) in certain Subscription and Resource Group.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzRemoteRenderingAccount -ResourceGroup rg1
+
+ResourceGroupName : rg1
+AccountId : 5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef
+AccountEndpoint : https://mrc-anchor-prod.trafficmanager.net/Accounts/5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef/
+AccountDomain : mixedreality.azure.com
+Tags : {}
+Location : eastus2
+Id : /subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/rg1/providers/Microsoft.MixedReality/RemoteRenderingAccounts/example
+Name : example
+Type : Microsoft.MixedReality/RemoteRenderingAccounts
+
+ResourceGroupName : rg1
+AccountId : 2f7443d0-2c2b-4514-9b29-a78072a1556f
+AccountEndpoint : https://mrc-anchor-prod.trafficmanager.net/Accounts/2f7443d0-2c2b-4514-9b29-a78072a1556f/
+AccountDomain : mixedreality.azure.com
+Tags : {}
+Location : eastus2
+Id : /subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/rg1/providers/Microsoft.MixedReality/RemoteRenderingAccounts/demo
+Name : demo
+Type : Microsoft.MixedReality/RemoteRenderingAccounts
+
+ResourceGroupName : rg1
+AccountId : ed3273ce-1eeb-42c7-b3b8-fb9896b9801c
+AccountEndpoint : https://mrc-anchor-prod.trafficmanager.net/Accounts/ed3273ce-1eeb-42c7-b3b8-fb9896b9801c/
+AccountDomain : mixedreality.azure.com
+Tags : {}
+Location : eastus2
+Id : /subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/rg1/providers/Microsoft.MixedReality/RemoteRenderingAccounts/foobar
+Name : foobar
+Type : Microsoft.MixedReality/RemoteRenderingAccounts
+```
+
+List all Remote Rendering Account in Resource Group "rg1".
+
+### Example 2
+```powershell
+PS C:\> Get-AzRemoteRenderingAccount -ResourceGroup rg1 -Name example
+
+ResourceGroupName : rg1
+AccountId : 5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef
+AccountEndpoint : https://mrc-anchor-prod.trafficmanager.net/Accounts/5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef/
+AccountDomain : mrc-anchor-prod.trafficmanager.net
+Tags : {}
+Location : eastus2
+Id : /subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/rg1/providers/Microsoft.MixedReality/RemoteRenderingAccounts/example
+Name : example
+Type : Microsoft.MixedReality/RemoteRenderingAccounts
+```
+
+Get Remote Rendering Account "example" in Resource Group "rg1".
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+Remote Rendering Account Name.
+
+```yaml
+Type: String
+Parameter Sets: GetParameterSet
+Aliases: RemoteRenderingAccountName, AccountName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name.
+
+```yaml
+Type: String
+Parameter Sets: ListParameterSet
+Aliases: ResourceGroup
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+```yaml
+Type: String
+Parameter Sets: GetParameterSet
+Aliases: ResourceGroup
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Resource ID of Remote Rendering Account.
+
+```yaml
+Type: String
+Parameter Sets: ResourceIdParameterSet
+Aliases: Id
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSRemoteRenderingAccount
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccountKey.md b/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccountKey.md
new file mode 100644
index 000000000000..fa9b60a164a2
--- /dev/null
+++ b/src/MixedReality/MixedReality/help/Get-AzRemoteRenderingAccountKey.md
@@ -0,0 +1,153 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll-Help.xml
+Module Name: Az.MixedReality
+online version: https://docs.microsoft.com/en-us/powershell/module/az.mixedreality/get-azremoterenderingaccountkey
+schema: 2.0.0
+---
+
+# Get-AzRemoteRenderingAccountKey
+
+## SYNOPSIS
+Get keys of Remote Rendering Account
+
+## SYNTAX
+
+### DefaultParameterSet (Default)
+```
+Get-AzRemoteRenderingAccountKey -ResourceGroupName -Name
+ [-DefaultProfile ] []
+```
+
+### ResourceIdParameterSet
+```
+Get-AzRemoteRenderingAccountKey -ResourceId
+ [-DefaultProfile ] []
+```
+
+### PipelineParameterSet
+```
+Get-AzRemoteRenderingAccountKey -InputObject
+ [-DefaultProfile ] []
+```
+
+## DESCRIPTION
+Get developer keys of Remote Rendering Account.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Get-AzRemoteRenderingAccountKey -ResourceGroup rg1 -Name example
+
+PrimaryKey SecondaryKey
+---------- ------------
+QTwT6LpnD6NuUfgfkCKFBmf89xWJ7tDC0Yx0yxxaejs= BGOP2NZN5ThHbDFKzW+FISSgxnnBqCPKpTsixAxkvXk=
+```
+
+Get developer keys of Remote Rendering Account "example" from current Subscription and Resource Group "rg1".
+
+### Example 2
+```powershell
+PS C:\> Get-AzRemoteRenderingAccount -ResourceGroup rg1 -Name example | Get-AzRemoteRenderingAccountKey
+
+PrimaryKey SecondaryKey
+---------- ------------
+QTwT6LpnD6NuUfgfkCKFBmf89xWJ7tDC0Yx0yxxaejs= BGOP2NZN5ThHbDFKzW+FISSgxnnBqCPKpTsixAxkvXk=
+```
+
+Get developer keys of Remote Rendering Account "example" from current Subscription and Resource Group "rg1" with piping.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+The custom domain object.
+
+```yaml
+Type: PSRemoteRenderingAccount
+Parameter Sets: PipelineParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -Name
+Remote Rendering Account Name.
+
+```yaml
+Type: String
+Parameter Sets: DefaultParameterSet
+Aliases: RemoteRenderingAccountName, AccountName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name.
+
+```yaml
+Type: String
+Parameter Sets: DefaultParameterSet
+Aliases: ResourceGroup
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Resource ID of Remote Rendering Account.
+
+```yaml
+Type: String
+Parameter Sets: ResourceIdParameterSet
+Aliases: Id
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSRemoteRenderingAccount
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSAccountKeys
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/MixedReality/MixedReality/help/Get-AzSpatialAnchorsAccountKey.md b/src/MixedReality/MixedReality/help/Get-AzSpatialAnchorsAccountKey.md
index c3d36c900f39..ab876f979acc 100644
--- a/src/MixedReality/MixedReality/help/Get-AzSpatialAnchorsAccountKey.md
+++ b/src/MixedReality/MixedReality/help/Get-AzSpatialAnchorsAccountKey.md
@@ -146,7 +146,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## OUTPUTS
-### Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.PSSpatialAnchorsAccountKeys
+### Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.PSAccountKeys
## NOTES
diff --git a/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccount.md b/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccount.md
new file mode 100644
index 000000000000..523f29f5b613
--- /dev/null
+++ b/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccount.md
@@ -0,0 +1,149 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll-Help.xml
+Module Name: Az.MixedReality
+online version: https://docs.microsoft.com/en-us/powershell/module/az.mixedreality/new-azremoterenderingaccount
+schema: 2.0.0
+---
+
+# New-AzRemoteRenderingAccount
+
+## SYNOPSIS
+Create Remote Rendering Account
+
+## SYNTAX
+
+```
+New-AzRemoteRenderingAccount -ResourceGroupName -Name -Location
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Create a new Remote Rendering Account in certain Subscription, Resource Group and Region.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> New-AzureRmRemoteRenderingAccount -ResourceGroup rg1 -Name example -Location centralus
+
+ResourceGroupName : rg1
+AccountId : 5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef
+AccountEndpoint : https://mrc-anchor-prod.trafficmanager.net/Accounts/5f70bc31-a5da-4dd7-b5ec-ccdf806ff0ef/
+AccountDomain : mixedreality.azure.com
+Tags : {}
+Location : centralus
+Id : /subscriptions/10438cf7-a794-4c7b-ad4c-5ddc1313ba7d/resourceGroups/rg1/providers/Microsoft.MixedReality/RemoteRenderingAccounts/example
+Name : example
+Type : Microsoft.MixedReality/RemoteRenderingAccounts
+```
+
+Create a new Remote Rendering Account "example" in current Subscription, Resource Group "rg1" and Central US.
+
+## PARAMETERS
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Location
+Remote Rendering Account Location.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Name
+Remote Rendering Account Name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: RemoteRenderingAccountName, AccountName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name.
+
+```yaml
+Type: String
+Parameter Sets: (All)
+Aliases: ResourceGroup
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### None
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSRemoteRenderingAccount
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccountKey.md b/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccountKey.md
new file mode 100644
index 000000000000..7e82198d9c16
--- /dev/null
+++ b/src/MixedReality/MixedReality/help/New-AzRemoteRenderingAccountKey.md
@@ -0,0 +1,246 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll-Help.xml
+Module Name: Az.MixedReality
+online version: https://docs.microsoft.com/en-us/powershell/module/az.mixedreality/new-azremoterenderingaccountkey
+schema: 2.0.0
+---
+
+# New-AzRemoteRenderingAccountKey
+
+## SYNOPSIS
+Regenerate key of Remote Rendering Account
+
+## SYNTAX
+
+### RegeneratePrimaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -ResourceGroupName -Name [-Primary] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### RegenerateSecondaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -ResourceGroupName -Name [-Secondary] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdRegeneratePrimaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -ResourceId [-Primary] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdRegenerateSecondaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -ResourceId [-Secondary] [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### PipelineRegeneratePrimaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -InputObject -Primary [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### PipelineRegenerateSecondaryKeyParameterSet
+```
+New-AzRemoteRenderingAccountKey -InputObject -Secondary [-Force]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Regenerate primary key or secondary key of Remote Rendering Account.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> New-AzRemoteRenderingAccountKey -ResourceGroupName rg1 -Name example -Secondary
+
+PrimaryKey SecondaryKey
+---------- ------------
+QTwT6LpnD6NuUfgfkCKFBmf89xWJ7tDC0Yx0yxxaejs= mF8lsBeEbs51H/jLe4COW4zUiEyg9lDM1XHQ03jtxZU=
+```
+
+Regenerate secondary key of Remote Rendering Account "example" in Resource Group "rg1".
+
+### Example 2
+```powershell
+PS C:\> Get-AzRemoteRenderingAccount -ResourceGroup rg1 -Name example | New-AzRemoteRenderingAccountKey -Secondary
+
+PrimaryKey SecondaryKey
+---------- ------------
+QTwT6LpnD6NuUfgfkCKFBmf89xWJ7tDC0Yx0yxxaejs= BGOP2NZN5ThHbDFKzW+FISSgxnnBqCPKpTsixAxkvXk=
+```
+
+Regenerate secondary key of Remote Rendering Account "example" from current Subscription and Resource Group "rg1" with piping.
+
+## PARAMETERS
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Force
+Forces the command to run without asking for user confirmation.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+The custom domain object.
+
+```yaml
+Type: PSRemoteRenderingAccount
+Parameter Sets: PipelineRegeneratePrimaryKeyParameterSet, PipelineRegenerateSecondaryKeyParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -Name
+Remote Rendering Account Name.
+
+```yaml
+Type: String
+Parameter Sets: RegeneratePrimaryKeyParameterSet, RegenerateSecondaryKeyParameterSet
+Aliases: RemoteRenderingAccountName, AccountName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Primary
+Regenerate primary key of Remote Rendering Account.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: RegeneratePrimaryKeyParameterSet, ResourceIdRegeneratePrimaryKeyParameterSet, PipelineRegeneratePrimaryKeyParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name.
+
+```yaml
+Type: String
+Parameter Sets: RegeneratePrimaryKeyParameterSet, RegenerateSecondaryKeyParameterSet
+Aliases: ResourceGroup
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Resource ID of Remote Rendering Account.
+
+```yaml
+Type: String
+Parameter Sets: ResourceIdRegeneratePrimaryKeyParameterSet, ResourceIdRegenerateSecondaryKeyParameterSet
+Aliases: Id
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -Secondary
+Regenerate primary key of Remote Rendering Account.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: RegenerateSecondaryKeyParameterSet, ResourceIdRegenerateSecondaryKeyParameterSet, PipelineRegenerateSecondaryKeyParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs. The cmdlet is not run.
+
+```yaml
+Type: System.Management.Automation.SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSRemoteRenderingAccount
+
+## OUTPUTS
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSAccountKeys
+
+## NOTES
+
+## RELATED LINKS
diff --git a/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccount.md b/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccount.md
index 1b79dc439fc1..e0d56c15413e 100644
--- a/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccount.md
+++ b/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccount.md
@@ -18,7 +18,7 @@ New-AzSpatialAnchorsAccount -ResourceGroupName -Name -Location
```
## DESCRIPTION
-Create a new Spatial Intelligence Account in certain Subscription, Resource Group and Region.
+Create a new Spatial Anchors Account in certain Subscription, Resource Group and Region.
## EXAMPLES
diff --git a/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccountKey.md b/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccountKey.md
index c3e6d7ffe498..872c69577d06 100644
--- a/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccountKey.md
+++ b/src/MixedReality/MixedReality/help/New-AzSpatialAnchorsAccountKey.md
@@ -239,7 +239,7 @@ For more information, see about_CommonParameters (http://go.microsoft.com/fwlink
## OUTPUTS
-### Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.PSSpatialAnchorsAccountKeys
+### Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.PSAccountKeys
## NOTES
diff --git a/src/MixedReality/MixedReality/help/Remove-AzRemoteRenderingAccount.md b/src/MixedReality/MixedReality/help/Remove-AzRemoteRenderingAccount.md
new file mode 100644
index 000000000000..30fb4010aacc
--- /dev/null
+++ b/src/MixedReality/MixedReality/help/Remove-AzRemoteRenderingAccount.md
@@ -0,0 +1,186 @@
+---
+external help file: Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll-Help.xml
+Module Name: Az.MixedReality
+online version: https://docs.microsoft.com/en-us/powershell/module/az.mixedreality/remove-azremoterenderingaccount
+schema: 2.0.0
+---
+
+# Remove-AzRemoteRenderingAccount
+
+## SYNOPSIS
+Delete Remote Rendering Account
+
+## SYNTAX
+
+### DefaultParameterSet (Default)
+```
+Remove-AzRemoteRenderingAccount -ResourceGroupName -Name [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+### ResourceIdParameterSet
+```
+Remove-AzRemoteRenderingAccount -ResourceId [-PassThru] [-DefaultProfile ]
+ [-WhatIf] [-Confirm] []
+```
+
+### PipelineParameterSet
+```
+Remove-AzRemoteRenderingAccount -InputObject [-PassThru]
+ [-DefaultProfile ] [-WhatIf] [-Confirm] []
+```
+
+## DESCRIPTION
+Delete specified Remote Rendering Account from certain Subscription and Resource Group.
+
+## EXAMPLES
+
+### Example 1
+```powershell
+PS C:\> Remove-AzRemoteRenderingAccount -ResourceGroup rg1 -Name example
+```
+
+Delete Remote Rendering Account "example" from current Subscription and Resource Group "rg1".
+
+## PARAMETERS
+
+### -Confirm
+Prompts you for confirmation before running the cmdlet.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -DefaultProfile
+The credentials, account, tenant, and subscription used for communication with Azure.
+
+```yaml
+Type: IAzureContextContainer
+Parameter Sets: (All)
+Aliases: AzContext, AzureRmContext, AzureCredential
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -InputObject
+The custom domain object.
+
+```yaml
+Type: PSRemoteRenderingAccount
+Parameter Sets: PipelineParameterSet
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+```
+
+### -Name
+Remote Rendering Account Name.
+
+```yaml
+Type: String
+Parameter Sets: DefaultParameterSet
+Aliases: RemoteRenderingAccountName, AccountName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -PassThru
+Return object if specified.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -ResourceGroupName
+Resource Group Name.
+
+```yaml
+Type: String
+Parameter Sets: DefaultParameterSet
+Aliases: ResourceGroup
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### -ResourceId
+Resource ID of Remote Rendering Account.
+
+```yaml
+Type: String
+Parameter Sets: ResourceIdParameterSet
+Aliases: Id
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+```
+
+### -WhatIf
+Shows what would happen if the cmdlet runs.
+The cmdlet is not run.
+
+```yaml
+Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+```
+
+### CommonParameters
+This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable.
+For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
+
+## INPUTS
+
+### System.String
+
+### Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.PSRemoteRenderingAccount
+
+### System.Management.Automation.SwitchParameter
+
+## OUTPUTS
+
+### System.Boolean
+
+## NOTES
+
+## RELATED LINKS
diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json
index db3cef6c6420..d24ecc33deb3 100644
--- a/tools/SecurityTools/CredScanSuppressions.json
+++ b/tools/SecurityTools/CredScanSuppressions.json
@@ -1004,6 +1004,30 @@
{
"file": "src\\Functions\\test\\New-AzFunctionApp.Recording.json",
"_justification": "Test resource is deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests\\TestRemoteRenderingAccountOperations.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests\\TestRemoteRenderingAccountOperationsWithPiping.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.RemoteRenderingAccountTests\\TestListRemoteRenderingAccounts.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests\\TestSpatialAnchorsAccountOperations.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests\\TestSpatialAnchorsAccountOperationsWithPiping.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
+ },
+ {
+ "file": "src\\MixedReality\\MixedReality.Test\\SessionRecords\\Microsoft.Azure.Commands.MixedReality.Test.SpatialAnchorsAccountTests\\TestListSpatialAnchorsAccounts.json",
+ "_justification": "Credentials do not persist after test as resources got deleted"
}
]
}
diff --git a/tools/StaticAnalysis/Exceptions/Az.MixedReality/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.MixedReality/SignatureIssues.csv
index dc3cd270fe94..b5d416897701 100644
--- a/tools/StaticAnalysis/Exceptions/Az.MixedReality/SignatureIssues.csv
+++ b/tools/StaticAnalysis/Exceptions/Az.MixedReality/SignatureIssues.csv
@@ -1,2 +1,3 @@
"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation"
-"c:\workspace\ps-pr\artifacts\Debug\Az.MixedReality\Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll","Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.NewSpatialAnchorsAccountKey","New-AzSpatialAnchorsAccountKey","1","8510","Cmdlet 'New-AzSpatialAnchorsAccountKey' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."
\ No newline at end of file
+"Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll","Microsoft.Azure.Commands.MixedReality.SpatialAnchorsAccount.NewSpatialAnchorsAccountKey","New-AzSpatialAnchorsAccountKey","1","8510","Cmdlet 'New-AzSpatialAnchorsAccountKey' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."
+"Microsoft.Azure.PowerShell.Cmdlets.MixedReality.dll","Microsoft.Azure.Commands.MixedReality.RemoteRenderingAccount.NewRemoteRenderingAccountKey","New-AzRemoteRenderingAccountKey","1","8510","Cmdlet 'New-AzRemoteRenderingAccountKey' has multiple parameter sets, but no defined default parameter set.","Define a default parameter set in the cmdlet attribute."