diff --git a/src/Compute/Compute.Test/Compute.Test.csproj b/src/Compute/Compute.Test/Compute.Test.csproj index 9151b595f9c9..0288b8c09aa9 100644 --- a/src/Compute/Compute.Test/Compute.Test.csproj +++ b/src/Compute/Compute.Test/Compute.Test.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/EventHub/EventHub.Test/EventHub.Test.csproj b/src/EventHub/EventHub.Test/EventHub.Test.csproj index b0ba6d00cded..2e49b96a0b3f 100644 --- a/src/EventHub/EventHub.Test/EventHub.Test.csproj +++ b/src/EventHub/EventHub.Test/EventHub.Test.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj index ba74572141de..9b9ee450c619 100644 --- a/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj +++ b/src/HDInsight/HDInsight.Test/HDInsight.Test.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj index d6fe7801ee8c..4bbae8e7cc75 100644 --- a/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj +++ b/src/KeyVault/KeyVault.Test/KeyVault.Test.csproj @@ -13,7 +13,7 @@ - + diff --git a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs index b092f15f568e..073cc1531683 100644 --- a/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs +++ b/src/KeyVault/KeyVault.Test/ScenarioTests/KeyVaultManagementTests.cs @@ -71,19 +71,6 @@ public void TestCreateNewVault() ); } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestManagedHsmCRUD() - { - KeyVaultManagementController.NewInstance.RunPsTestWorkflow( - _logger, - () => { return new[] { "Test-ManagedHsmCRUD" }; }, - null, - MethodBase.GetCurrentMethod().ReflectedType?.ToString(), - MethodBase.GetCurrentMethod().Name - ); - } - #endregion #region Get-AzureRmKeyVault diff --git a/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.cs b/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.cs new file mode 100644 index 000000000000..df879c904be6 --- /dev/null +++ b/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.cs @@ -0,0 +1,22 @@ +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using System; +using System.Collections.Generic; +using System.Text; +using Xunit; + +namespace Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests +{ + public class ManagedHsmManagementTests: KeyVaultTestRunner + { + public ManagedHsmManagementTests(Xunit.Abstractions.ITestOutputHelper output) : base(output) + { + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestManagedHsmCRUD() + { + TestRunner.RunTestScript("Test-ManagedHsmCRUD"); + } + } +} diff --git a/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.ps1 b/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.ps1 new file mode 100644 index 000000000000..f62ca9f6d72a --- /dev/null +++ b/src/KeyVault/KeyVault.Test/ScenarioTests/ManagedHsmManagementTests.ps1 @@ -0,0 +1,62 @@ +# ---------------------------------------------------------------------------------- +# +# 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 +Tests CRUD for Managed Hsm. +#> +function Test-ManagedHsmCRUD { + $rgName = getAssetName + $rgLocation = Get-Location "Microsoft.Resources" "resourceGroups" "West US" + $hsmName = getAssetName + $hsmLocation = Get-Location "Microsoft.KeyVault" "managedHSMs" "East US 2" + $administrator = "c1be1392-39b8-4521-aafc-819a47008545" + New-AzResourceGroup -Name $rgName -Location $rgLocation + + try { + # Test create a default Managed HSM + $hsm = New-AzKeyVault -Name $hsmName -ResourceGroupName $rgName -Location $hsmLocation -Administrator $administrator -Hsm + Assert-AreEqual $hsmName $hsm.VaultName + Assert-AreEqual $rgName $hsm.ResourceGroupName + Assert-AreEqual $hsmLocation $hsm.Location + Assert-AreEqual 1 $hsm.InitialAdminObjectIds.Count + Assert-True { $hsm.InitialAdminObjectIds.Contains($administrator) } + Assert-AreEqual "StandardB1" $hsm.Sku + + # Default retention days + Assert-AreEqual 90 $hsm.SoftDeleteRetentionInDays "By default SoftDeleteRetentionInDays should be 90" + + # Test get Managed HSM + $got = Get-AzKeyVault -Name $hsmName -ResourceType Hsm + Assert-NotNull $got + Assert-AreEqual $hsmName $got.VaultName + Assert-AreEqual $rgName $got.ResourceGroupName + Assert-AreEqual $hsmLocation $got.Location + + # Test throws for existing vault + Assert-Throws { New-AzKeyVault -VaultName $hsmName -ResourceGroupName $rgname -Location $vaultLocation -Administrator $administrator -Hsm} + + # Test remove Managed HSM + Remove-AzKeyVault -InputObject $got -Hsm -Force + $deletedMhsm = Get-AzKeyVault -VaultName $hsmName -ResourceGroupName $rgName + Assert-Null $deletedMhsm + + # Test throws for resourcegroup nonexistent + Assert-Throws { New-AzKeyVault -VaultName (getAssetName) -ResourceGroupName (getAssetName) -Location $vaultLocation -Administrator $administrator -Hsm} + } + + finally { + Remove-AzResourceGroup -Name $rgName -Force + } +} diff --git a/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 b/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 index 3ffdf669ad28..ffc3a6a5e236 100644 --- a/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 +++ b/src/KeyVault/KeyVault.Test/Scripts/ControlPlane/KeyVaultManagementTests.ps1 @@ -156,55 +156,6 @@ function Test-CreateNewVault { } } -<# -.SYNOPSIS -Tests CRUD for Managed Hsm. -#> -function Test-ManagedHsmCRUD { - $rgName = getAssetName - $rgLocation = Get-Location "Microsoft.Resources" "resourceGroups" "West US" - $hsmName = getAssetName - $hsmLocation = Get-Location "Microsoft.KeyVault" "managedHSMs" "East US 2" - $administrator = "c1be1392-39b8-4521-aafc-819a47008545" - New-AzResourceGroup -Name $rgName -Location $rgLocation - - try { - # Test create a default Managed HSM - $actual = New-AzKeyVault -Name $hsmName -ResourceGroupName $rgName -Location $hsmLocation -Administrator $administrator -Hsm - Assert-AreEqual $hsmName $actual.VaultName - Assert-AreEqual $rgName $actual.ResourceGroupName - Assert-AreEqual $hsmLocation $actual.Location - Assert-AreEqual 1 $hsm.InitialAdminObjectIds.Count - Assert-True $hsm.InitialAdminObjectIds.Contains($administrator) - Assert-AreEqual "StandardB1" $actual.Sku - - # Default retention days - Assert-AreEqual 90 $actual.SoftDeleteRetentionInDays "By default SoftDeleteRetentionInDays should be 90" - - # Test get Managed HSM - $got = Get-AzKeyVault -Name $hsmName -ResourceType Hsm - Assert-NotNull $got - Assert-AreEqual $hsmName $got.VaultName - Assert-AreEqual $rgName $got.ResourceGroupName - Assert-AreEqual $hsmLocation $got.Location - - # Test throws for existing vault - Assert-Throws { New-AzKeyVault -VaultName $hsmName -ResourceGroupName $rgname -Location $vaultLocation -Administrator $administrator -Hsm} - - # Test remove Managed HSM - Remove-AzKeyVault -InputObject $got -Hsm -Force - $deletedMhsm = Get-AzKeyVault -VaultName $vaultName -ResourceGroupName $rgName - Assert-Null $deletedMhsm - - # Test throws for resourcegroup nonexistent - Assert-Throws { New-AzKeyVault -VaultName (getAssetName) -ResourceGroupName (getAssetName) -Location $vaultLocation -Administrator $administrator -Hsm} - } - - finally { - Remove-AzResourceGroup -Name $rgName -Force - } -} - #------------------------------------------------------------------------------------- #------------------------------Soft-delete-------------------------------------- diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVault.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVault.json index adfdc9ee743d..36bab34cab74 100644 --- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVault.json +++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestDeleteVault.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e943f67c-d16f-490d-b9af-d1ee420c2f1d" + "2f140ec1-d166-4b8c-ab4a-07c4743fa1ca" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-request-id": [ - "567cb0dc-c91f-48b2-917e-81224b00fe64" + "efe97184-f68a-4e41-a75f-9b9f83831e77" ], "x-ms-correlation-request-id": [ - "567cb0dc-c91f-48b2-917e-81224b00fe64" + "efe97184-f68a-4e41-a75f-9b9f83831e77" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084828Z:567cb0dc-c91f-48b2-917e-81224b00fe64" + "KOREASOUTH:20200810T062530Z:efe97184-f68a-4e41-a75f-9b9f83831e77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:48:28 GMT" + "Mon, 10 Aug 2020 06:25:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,10 +54,10 @@ "-1" ], "Content-Length": [ - "249" + "10938" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,16 +67,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fdf7666-d313-4af1-addc-e21ecc6db5cb" + "e5ed1190-2ee5-43fe-99ae-4657832740a6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-request-id": [ - "383a39ab-8bdb-4ffd-87ad-3d03fccf8fc2" + "36509a50-084e-4c45-a060-8852268f412b" ], "x-ms-correlation-request-id": [ - "383a39ab-8bdb-4ffd-87ad-3d03fccf8fc2" + "36509a50-084e-4c45-a060-8852268f412b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084829Z:383a39ab-8bdb-4ffd-87ad-3d03fccf8fc2" + "KOREASOUTH:20200810T062530Z:36509a50-084e-4c45-a060-8852268f412b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:48:28 GMT" + "Mon, 10 Aug 2020 06:25:30 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,29 +114,29 @@ "-1" ], "Content-Length": [ - "5958" + "7541" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6549?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjU0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9236?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTIzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40cea752-f718-42b6-9f8b-0718cc90f436" + "d7555d28-b34d-4aa3-a7cd-2f904242a096" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,16 +153,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "8e124519-f82d-48fc-a9ce-bddc1879330d" + "68246abe-2251-419a-8c32-ada5ee2ccfdd" ], "x-ms-correlation-request-id": [ - "8e124519-f82d-48fc-a9ce-bddc1879330d" + "68246abe-2251-419a-8c32-ada5ee2ccfdd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084832Z:8e124519-f82d-48fc-a9ce-bddc1879330d" + "KOREASOUTH:20200810T062532Z:68246abe-2251-419a-8c32-ada5ee2ccfdd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:48:31 GMT" + "Mon, 10 Aug 2020 06:25:32 GMT" ], "Content-Length": [ "165" @@ -183,7 +183,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549\",\r\n \"name\": \"ps6549\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236\",\r\n \"name\": \"ps9236\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -193,16 +193,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4130ee9d-fc54-42b7-a6b9-483d2b0a9604" + "72d6cca5-f485-4657-bf99-935788f5a602" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -213,16 +213,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "ad51bd2f-1811-49ec-8726-c06b56b8df20" + "847af8b4-0552-4c74-bec6-38fe93c7504e" ], "x-ms-correlation-request-id": [ - "ad51bd2f-1811-49ec-8726-c06b56b8df20" + "847af8b4-0552-4c74-bec6-38fe93c7504e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084832Z:ad51bd2f-1811-49ec-8726-c06b56b8df20" + "KOREASOUTH:20200810T062533Z:847af8b4-0552-4c74-bec6-38fe93c7504e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:48:31 GMT" + "Mon, 10 Aug 2020 06:25:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,10 +240,10 @@ "-1" ], "Content-Length": [ - "1170" + "274" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8052/providers/Microsoft.KeyVault/vaults/pshtestvault5807\",\r\n \"name\": \"pshtestvault5807\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg1183/providers/Microsoft.KeyVault/vaults/pshtestvault2216\",\r\n \"name\": \"pshtestvault2216\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -253,16 +253,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b04a20c0-49bb-40d9-a466-ba471297af15" + "ed7e5298-0094-4a78-8095-6a8ee869dbd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -273,16 +273,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "823d4244-cbbf-40e1-ac5f-14a145a34bce" + "91707cf1-8f88-4f3f-a0ad-f7ff5c3cfae0" ], "x-ms-correlation-request-id": [ - "823d4244-cbbf-40e1-ac5f-14a145a34bce" + "91707cf1-8f88-4f3f-a0ad-f7ff5c3cfae0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084910Z:823d4244-cbbf-40e1-ac5f-14a145a34bce" + "KOREASOUTH:20200810T062610Z:91707cf1-8f88-4f3f-a0ad-f7ff5c3cfae0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:10 GMT" + "Mon, 10 Aug 2020 06:26:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,10 +300,10 @@ "-1" ], "Content-Length": [ - "1375" + "218" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8052/providers/Microsoft.KeyVault/vaults/pshtestvault5807\",\r\n \"name\": \"pshtestvault5807\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -313,16 +313,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9192eeb2-91f2-4d9e-88c2-c33ec9e85321" + "9950d493-f79e-4d7f-8cc2-d326ef9b91c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -333,16 +333,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11994" ], "x-ms-request-id": [ - "a2851c04-be54-4dae-9a85-fc17a69703fc" + "ec7ca5de-4342-4f88-8293-83c733c0ab91" ], "x-ms-correlation-request-id": [ - "a2851c04-be54-4dae-9a85-fc17a69703fc" + "ec7ca5de-4342-4f88-8293-83c733c0ab91" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084913Z:a2851c04-be54-4dae-9a85-fc17a69703fc" + "KOREASOUTH:20200810T062615Z:ec7ca5de-4342-4f88-8293-83c733c0ab91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,7 +351,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:13 GMT" + "Mon, 10 Aug 2020 06:26:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,10 +360,10 @@ "-1" ], "Content-Length": [ - "1170" + "12" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8052/providers/Microsoft.KeyVault/vaults/pshtestvault5807\",\r\n \"name\": \"pshtestvault5807\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -373,16 +373,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94828553-68fc-4b33-9f96-d991ac23308f" + "22196341-ed93-4d4d-a50b-b9905799ffa5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -393,16 +393,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11993" ], "x-ms-request-id": [ - "51faf9eb-41c9-4b08-bd97-92a62ad8030d" + "4aeca9ed-5c17-49fb-a963-076bfafb25ca" ], "x-ms-correlation-request-id": [ - "51faf9eb-41c9-4b08-bd97-92a62ad8030d" + "4aeca9ed-5c17-49fb-a963-076bfafb25ca" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084916Z:51faf9eb-41c9-4b08-bd97-92a62ad8030d" + "KOREASOUTH:20200810T062618Z:4aeca9ed-5c17-49fb-a963-076bfafb25ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +411,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:16 GMT" + "Mon, 10 Aug 2020 06:26:17 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "-1" ], "Content-Length": [ - "1375" + "218" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8052/providers/Microsoft.KeyVault/vaults/pshtestvault5807\",\r\n \"name\": \"pshtestvault5807\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -433,16 +433,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "743ff0d2-2ffa-4acc-bec2-641328cb91cc" + "6aea4e80-b64f-4e6c-a887-7e7907d2803b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -453,16 +453,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-request-id": [ - "73a9af1e-1eb4-4122-97b1-f3b13cf93092" + "8c896512-7928-4494-8173-03685f2680f2" ], "x-ms-correlation-request-id": [ - "73a9af1e-1eb4-4122-97b1-f3b13cf93092" + "8c896512-7928-4494-8173-03685f2680f2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084919Z:73a9af1e-1eb4-4122-97b1-f3b13cf93092" + "KOREASOUTH:20200810T062622Z:8c896512-7928-4494-8173-03685f2680f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,7 +471,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:18 GMT" + "Mon, 10 Aug 2020 06:26:22 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -480,10 +480,10 @@ "-1" ], "Content-Length": [ - "1170" + "12" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg8052/providers/Microsoft.KeyVault/vaults/pshtestvault5807\",\r\n \"name\": \"pshtestvault5807\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -493,16 +493,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "354c435d-a197-4659-a16f-061a71245eb3" + "2b500a3f-e414-4aa6-b1cb-38db052e4b28" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -513,19 +513,22 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zdYNvqMJxEPyFzVra9+PAtJ7QJl7nmvli7HmfEnDvgs=" + "PbX093wGQg+nS0LnpNbvwtdcYd1FNfPNf3t/DYElju0=" ], "request-id": [ - "8cd3c334-cf78-4e52-b297-b98f61f8fa98" + "a6c26f1b-71f6-4707-a39c-ec5840d6cb58" ], "client-request-id": [ - "354c435d-a197-4659-a16f-061a71245eb3" + "2b500a3f-e414-4aa6-b1cb-38db052e4b28" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_Y79WgzJj1mLxiwHIO6dsQRW0iMzYRPbhDEq9jzIx3tA4H7Lp51jjNXy8Uthu9jHre98QmsYUd-hVV5V8mBQQ0nLOYi4WRITp4R4VSzPJvk4UckOm2tnesQeCOLwtTh_.ZI-sjIeUFAVjPgg2XbF9TCLD8SQQuHhL0BSShqL6-hE" + "D4OoOBMaFu_B174RcTyu9aszXkI83a763Y5R8xX4ypEQ6gcA6mkYsSWn_KDmVsGONsL-5tnJrNv-4UsO5zmVeppwPgSR5-fmIavTQGxH5NSt7AYA-NYToWoA9s1EeZpN.VX6LS1sSk5SuyDCPNQJxgkwElHffUUmNgvy2DT_CN50" + ], + "x-ms-resource-unit": [ + "2" ], "DataServiceVersion": [ "3.0;" @@ -543,10 +546,10 @@ "ASP.NET" ], "Duration": [ - "332497" + "418293" ], "Date": [ - "Tue, 31 Mar 2020 08:48:32 GMT" + "Mon, 10 Aug 2020 06:25:32 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -558,7 +561,7 @@ "219" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"8cd3c334-cf78-4e52-b297-b98f61f8fa98\",\r\n \"date\": \"2020-03-31T08:48:32\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"a6c26f1b-71f6-4707-a39c-ec5840d6cb58\",\r\n \"date\": \"2020-08-10T06:25:33\"\r\n }\r\n}", "StatusCode": 403 }, { @@ -568,16 +571,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf3e0caa-0675-41be-8dd8-1a0bbb6ae7c7" + "65d49d33-a52b-4e0f-9966-a8f8633ca5de" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -588,19 +591,22 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "vY6PEmGgtTtXMC69EjFpJ5eVpCutiqshiE4gwBLq+5s=" + "9J2kqSfQFChQGTqgUTLaYafjNcy05J9iPyG5EVtU9lE=" ], "request-id": [ - "394b40ca-3157-428a-8d5a-f131dea180db" + "90e4e62d-ba56-4c54-856a-1fffb15f62a1" ], "client-request-id": [ - "cf3e0caa-0675-41be-8dd8-1a0bbb6ae7c7" + "65d49d33-a52b-4e0f-9966-a8f8633ca5de" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-V5sUg9wtPlPIsKia-uoDdnxuj3ioqNvJegBvpZ0dfw9finHVF1wmAFPfjeOrFpX6uEF-6Rs3gGwVOAt8RkLPLR_YNT4e6YEQjkp_xxi3CKAQpWUcf414c3jzfe6LF68.4vFUGgkPETTHcrcaFwoX5IsgBy31xRZK2g3cX4pByes" + "HHe_tG6oTkiSHYuL46hbRuk2A-7iCpn6MiDdzVxxTOEwfalubqq8PiaeNnEzDAtNXYxw6hY-OT5Mnu91QHOVBQvJppLzxiBJMXMhfbACBvAHViksWVv1a99POJOH9yGK.b6x3goyviQkZ_YTdn3zyH-jwZESgOxQMm8zxxAuLQbc" + ], + "x-ms-resource-unit": [ + "2" ], "DataServiceVersion": [ "3.0;" @@ -618,10 +624,10 @@ "ASP.NET" ], "Duration": [ - "365550" + "313245" ], "Date": [ - "Tue, 31 Mar 2020 08:49:13 GMT" + "Mon, 10 Aug 2020 06:26:15 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -633,32 +639,32 @@ "219" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"394b40ca-3157-428a-8d5a-f131dea180db\",\r\n \"date\": \"2020-03-31T08:49:13\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"90e4e62d-ba56-4c54-856a-1fffb15f62a1\",\r\n \"date\": \"2020-08-10T06:26:15\"\r\n }\r\n}", "StatusCode": 403 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f3f7edec-b7eb-4b49-9d44-ddfb41c693d2" + "74480d7e-80b3-47f7-a4a2-10fe00622353" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "511" + "513" ] }, "ResponseHeaders": { @@ -669,10 +675,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "63b542a9-787a-4521-8a0b-0e093f723e1b" + "dfba58e8-c27f-4e15-a015-9b801f4faae2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -693,16 +699,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "ae4d0180-44cb-40f4-985c-2fd6f3969c28" + "33fa852e-707b-4f22-a24c-c10b05ba2637" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084840Z:ae4d0180-44cb-40f4-985c-2fd6f3969c28" + "KOREASOUTH:20200810T062540Z:33fa852e-707b-4f22-a24c-c10b05ba2637" ], "Date": [ - "Tue, 31 Mar 2020 08:48:39 GMT" + "Mon, 10 Aug 2020 06:25:39 GMT" ], "Content-Length": [ - "561" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -711,32 +717,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps578.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps5623.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f894bed2-f1f2-4861-9ef6-7a0a6b41c401" + "749ae488-4d4a-45de-93ae-162b6df3a762" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "511" + "513" ] }, "ResponseHeaders": { @@ -747,10 +753,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "5ae22dc5-a918-48de-817f-e65de3e3377e" + "38db4b95-7fac-41de-a315-bbc78c7f5fb1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,16 +777,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "99c6c57f-b166-449d-a6d3-94227315d231" + "bd191c95-7791-4d92-8ab5-ebf726cc443e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084916Z:99c6c57f-b166-449d-a6d3-94227315d231" + "KOREASOUTH:20200810T062618Z:bd191c95-7791-4d92-8ab5-ebf726cc443e" ], "Date": [ - "Tue, 31 Mar 2020 08:49:16 GMT" + "Mon, 10 Aug 2020 06:26:17 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,20 +795,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps578.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps5623.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -813,10 +819,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "a42062bb-1335-4fbf-bf3d-3305533d6974" + "1c079a30-a339-4d68-849a-fd1ef3bce5d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -834,19 +840,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-correlation-request-id": [ - "f309671f-548a-41a8-ba7e-be34446e4c0e" + "ed1a353b-9148-4ef8-aaa8-4a86d7135fa4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084910Z:f309671f-548a-41a8-ba7e-be34446e4c0e" + "KOREASOUTH:20200810T062610Z:ed1a353b-9148-4ef8-aaa8-4a86d7135fa4" ], "Date": [ - "Tue, 31 Mar 2020 08:49:10 GMT" + "Mon, 10 Aug 2020 06:26:10 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -855,26 +861,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps578.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps5623.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2f9a7207-68b5-4a35-a43c-879a0c56e771" + "1624c399-9ad3-4869-9156-cb97f4bd8cd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -888,13 +894,13 @@ "gateway" ], "x-ms-request-id": [ - "8da64074-d86c-4960-8682-ce73ce418859" + "b78d299d-2ae7-46ae-9653-2a52af38d913" ], "x-ms-correlation-request-id": [ - "8da64074-d86c-4960-8682-ce73ce418859" + "b78d299d-2ae7-46ae-9653-2a52af38d913" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084913Z:8da64074-d86c-4960-8682-ce73ce418859" + "KOREASOUTH:20200810T062614Z:b78d299d-2ae7-46ae-9653-2a52af38d913" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -903,7 +909,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:13 GMT" + "Mon, 10 Aug 2020 06:26:14 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -912,29 +918,29 @@ "-1" ], "Content-Length": [ - "141" + "210" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps578' under resource group 'ps6549' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps5623' under resource group 'ps9236' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c59c44f4-d577-44d5-9fcf-3d20a97841ec" + "16878ebc-fb0a-4139-9789-76d49fd0a348" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -945,10 +951,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "0ddef46f-bb13-4787-ba08-84d0c53083ca" + "0d89ab0d-3202-41cf-a4ff-16df1665c2aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,16 +975,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "6d4f2af7-eaaa-45e8-96d5-887a090b459f" + "4ad32fed-fc6e-4f9e-a005-19ea1bde0796" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084916Z:6d4f2af7-eaaa-45e8-96d5-887a090b459f" + "KOREASOUTH:20200810T062618Z:4ad32fed-fc6e-4f9e-a005-19ea1bde0796" ], "Date": [ - "Tue, 31 Mar 2020 08:49:16 GMT" + "Mon, 10 Aug 2020 06:26:18 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -987,26 +993,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578\",\r\n \"name\": \"ps578\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps578.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623\",\r\n \"name\": \"ps5623\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps5623.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f897626-4af0-4576-be75-1941c5ce1b3a" + "1987f3e3-a625-41ad-a916-97040a89d9fd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1020,13 +1026,13 @@ "gateway" ], "x-ms-request-id": [ - "b733907a-9561-43a1-a4df-4330dbcb7cb9" + "52dcf424-85e8-4e76-9c5c-2dc8ba3646fd" ], "x-ms-correlation-request-id": [ - "b733907a-9561-43a1-a4df-4330dbcb7cb9" + "52dcf424-85e8-4e76-9c5c-2dc8ba3646fd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084919Z:b733907a-9561-43a1-a4df-4330dbcb7cb9" + "KOREASOUTH:20200810T062621Z:52dcf424-85e8-4e76-9c5c-2dc8ba3646fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1035,7 +1041,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:18 GMT" + "Mon, 10 Aug 2020 06:26:21 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1044,29 +1050,29 @@ "-1" ], "Content-Length": [ - "141" + "210" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps578' under resource group 'ps6549' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps5623' under resource group 'ps9236' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "53c60422-f2aa-4887-83a9-3e8a09148c27" + "c9606cb5-efac-4b79-b09f-62dd5de34702" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1077,10 +1083,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "d2bb3e37-e257-43a4-b74e-a971b7959e1d" + "1cb581b3-8505-4cf4-892b-f027e89da4d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,16 +1104,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "a4cbae56-bb69-4736-9d2d-3e6b56dc8c93" + "0092d954-8081-4a26-b19f-9a8a8a80e273" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084913Z:a4cbae56-bb69-4736-9d2d-3e6b56dc8c93" + "KOREASOUTH:20200810T062614Z:0092d954-8081-4a26-b19f-9a8a8a80e273" ], "Date": [ - "Tue, 31 Mar 2020 08:49:12 GMT" + "Mon, 10 Aug 2020 06:26:14 GMT" ], "Expires": [ "-1" @@ -1120,22 +1126,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6549/providers/Microsoft.KeyVault/vaults/ps578?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU3OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/vaults/ps5623?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczU2MjM/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "785ba70d-5f48-4f3a-b088-2d3ad7ed4e87" + "83442cda-d7be-4c34-a313-b71cd82bfcee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1146,10 +1152,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "7ce266aa-91c4-476a-bc1c-50da2f3088b7" + "fa59614e-adab-4d2a-8fbb-5949d568cc2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1167,16 +1173,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "22441098-8999-4f28-bf11-e042c716c2db" + "5e63c653-1bc5-4cb0-b817-ee36c6e4baec" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084918Z:22441098-8999-4f28-bf11-e042c716c2db" + "KOREASOUTH:20200810T062621Z:5e63c653-1bc5-4cb0-b817-ee36c6e4baec" ], "Date": [ - "Tue, 31 Mar 2020 08:49:18 GMT" + "Mon, 10 Aug 2020 06:26:20 GMT" ], "Expires": [ "-1" @@ -1189,22 +1195,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6549?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjU0OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/managedHSMs/ps5623?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNTYyMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac662c3e-8470-4e4b-baba-8c8eb53c9bed" + "6e218bfe-95df-4460-85d2-a5479d92df03" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1214,23 +1220,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "be282606-a664-4501-b32c-94f3a6205fb8" + "b6000fb5-aa43-4455-97f7-1531e504b44d" ], "x-ms-correlation-request-id": [ - "be282606-a664-4501-b32c-94f3a6205fb8" + "b6000fb5-aa43-4455-97f7-1531e504b44d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084923Z:be282606-a664-4501-b32c-94f3a6205fb8" + "KOREASOUTH:20200810T062615Z:b6000fb5-aa43-4455-97f7-1531e504b44d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1239,29 +1239,38 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:22 GMT" + "Mon, 10 Aug 2020 06:26:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "215" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/managedHSMs/ps5623' under resource group 'ps9236' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps9236/providers/Microsoft.KeyVault/managedHSMs/ps5623?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTIzNi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNTYyMz9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3095bc71-ad28-4d5e-aec4-f4e1c36e6f95" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1271,23 +1280,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "6a10563e-0ad4-4993-aeea-a0f24b5e45f9" + "443a431a-0303-409a-848d-53ebab4ee27d" ], "x-ms-correlation-request-id": [ - "6a10563e-0ad4-4993-aeea-a0f24b5e45f9" + "443a431a-0303-409a-848d-53ebab4ee27d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084938Z:6a10563e-0ad4-4993-aeea-a0f24b5e45f9" + "KOREASOUTH:20200810T062622Z:443a431a-0303-409a-848d-53ebab4ee27d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1296,29 +1299,38 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:38 GMT" + "Mon, 10 Aug 2020 06:26:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "215" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/managedHSMs/ps5623' under resource group 'ps9236' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps9236?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzOTIzNj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "36635295-a3f4-4840-9c72-183561c07711" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1329,22 +1341,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "5242291a-47b3-4519-b277-c23ec2582727" + "f273cbb2-7260-46a2-ac0f-0503027aaab5" ], "x-ms-correlation-request-id": [ - "5242291a-47b3-4519-b277-c23ec2582727" + "f273cbb2-7260-46a2-ac0f-0503027aaab5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T084953Z:5242291a-47b3-4519-b277-c23ec2582727" + "KOREASOUTH:20200810T062625Z:f273cbb2-7260-46a2-ac0f-0503027aaab5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,7 +1365,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:49:53 GMT" + "Mon, 10 Aug 2020 06:26:25 GMT" ], "Expires": [ "-1" @@ -1366,16 +1378,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1386,22 +1398,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11991" ], "x-ms-request-id": [ - "70a899c1-a90d-463f-a575-d37c052fedea" + "9162b013-3391-445a-9708-85ef9b048f2e" ], "x-ms-correlation-request-id": [ - "70a899c1-a90d-463f-a575-d37c052fedea" + "9162b013-3391-445a-9708-85ef9b048f2e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085009Z:70a899c1-a90d-463f-a575-d37c052fedea" + "KOREASOUTH:20200810T062641Z:9162b013-3391-445a-9708-85ef9b048f2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1422,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:50:08 GMT" + "Mon, 10 Aug 2020 06:26:40 GMT" ], "Expires": [ "-1" @@ -1423,16 +1435,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1443,22 +1455,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11990" ], "x-ms-request-id": [ - "6fb2394c-91ae-4c46-a5a5-a04258aa6bc2" + "044a5157-10b1-4f4a-b1c5-cd815e6307c1" ], "x-ms-correlation-request-id": [ - "6fb2394c-91ae-4c46-a5a5-a04258aa6bc2" + "044a5157-10b1-4f4a-b1c5-cd815e6307c1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085024Z:6fb2394c-91ae-4c46-a5a5-a04258aa6bc2" + "KOREASOUTH:20200810T062656Z:044a5157-10b1-4f4a-b1c5-cd815e6307c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,7 +1479,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:50:24 GMT" + "Mon, 10 Aug 2020 06:26:56 GMT" ], "Expires": [ "-1" @@ -1480,16 +1492,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1500,16 +1512,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11989" ], "x-ms-request-id": [ - "a29ee7b4-402b-4a39-96bd-2cbd491d6a67" + "8fbf164b-71e4-4e9c-ba9d-d1b7b4a11b9f" ], "x-ms-correlation-request-id": [ - "a29ee7b4-402b-4a39-96bd-2cbd491d6a67" + "8fbf164b-71e4-4e9c-ba9d-d1b7b4a11b9f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085040Z:a29ee7b4-402b-4a39-96bd-2cbd491d6a67" + "KOREASOUTH:20200810T062711Z:8fbf164b-71e4-4e9c-ba9d-d1b7b4a11b9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1518,7 +1530,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:50:40 GMT" + "Mon, 10 Aug 2020 06:27:11 GMT" ], "Expires": [ "-1" @@ -1531,16 +1543,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY1NDktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZMU5Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkyMzYtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpreU16WXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1551,16 +1563,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11988" ], "x-ms-request-id": [ - "a7fedcda-05da-414b-a2d2-210796fbfdef" + "41d91fff-a8e7-4f79-a00f-5780eee85f9f" ], "x-ms-correlation-request-id": [ - "a7fedcda-05da-414b-a2d2-210796fbfdef" + "41d91fff-a8e7-4f79-a00f-5780eee85f9f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085040Z:a7fedcda-05da-414b-a2d2-210796fbfdef" + "KOREASOUTH:20200810T062712Z:41d91fff-a8e7-4f79-a00f-5780eee85f9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1569,7 +1581,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:50:40 GMT" + "Mon, 10 Aug 2020 06:27:11 GMT" ], "Expires": [ "-1" @@ -1584,8 +1596,8 @@ ], "Names": { "Test-DeleteVaultByName": [ - "ps6549", - "ps578" + "ps9236", + "ps5623" ] }, "Variables": { diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVault.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVault.json index 17f673f4a581..3397ce1d36ef 100644 --- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVault.json +++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestGetVault.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "778cfdec-b9d0-412e-aee3-984102b53a2e" + "4c7945ac-69f9-4262-840e-01187153196d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-request-id": [ - "54dc309d-22b7-44b5-b83d-519a3b7eb7ed" + "5b33f13c-13dd-4994-a816-93bf9a9af906" ], "x-ms-correlation-request-id": [ - "54dc309d-22b7-44b5-b83d-519a3b7eb7ed" + "5b33f13c-13dd-4994-a816-93bf9a9af906" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085614Z:54dc309d-22b7-44b5-b83d-519a3b7eb7ed" + "KOREASOUTH:20200810T062843Z:5b33f13c-13dd-4994-a816-93bf9a9af906" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:14 GMT" + "Mon, 10 Aug 2020 06:28:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,10 +54,10 @@ "-1" ], "Content-Length": [ - "249" + "10938" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,16 +67,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41e9abd6-6ccb-46be-96a5-9f314cbb4d52" + "0adff04e-cc42-41ca-b99b-16348324b93b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-request-id": [ - "f156a0f9-3bcc-4fd7-8bad-779238582814" + "066d3117-7c1d-4bdb-91ed-ac9e1a342430" ], "x-ms-correlation-request-id": [ - "f156a0f9-3bcc-4fd7-8bad-779238582814" + "066d3117-7c1d-4bdb-91ed-ac9e1a342430" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085614Z:f156a0f9-3bcc-4fd7-8bad-779238582814" + "KOREASOUTH:20200810T062843Z:066d3117-7c1d-4bdb-91ed-ac9e1a342430" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:14 GMT" + "Mon, 10 Aug 2020 06:28:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,29 +114,29 @@ "-1" ], "Content-Length": [ - "5958" + "7541" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7732?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzczMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8689?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODY4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "598b9697-f242-417f-a01a-4ba972204a0a" + "0b970310-8804-4e99-8c4a-15b703e245c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,16 +153,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-request-id": [ - "cbe7c9b5-1914-4d1c-a834-8657f0dc3c5d" + "2c53298f-ddb3-4c23-bc5a-787c0cceb59c" ], "x-ms-correlation-request-id": [ - "cbe7c9b5-1914-4d1c-a834-8657f0dc3c5d" + "2c53298f-ddb3-4c23-bc5a-787c0cceb59c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085618Z:cbe7c9b5-1914-4d1c-a834-8657f0dc3c5d" + "KOREASOUTH:20200810T062845Z:2c53298f-ddb3-4c23-bc5a-787c0cceb59c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:18 GMT" + "Mon, 10 Aug 2020 06:28:44 GMT" ], "Content-Length": [ "165" @@ -183,7 +183,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732\",\r\n \"name\": \"ps7732\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689\",\r\n \"name\": \"ps8689\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -193,16 +193,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ace07f1-e1f6-4ebf-b41b-51cae9520a87" + "a85f8177-9ef3-462a-8275-4cd06ebd164d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -213,16 +213,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-request-id": [ - "9b08cec5-846c-47b9-91af-2ee9d0dec3ba" + "d7cdc6d2-f126-435c-bf98-ba4404dfa293" ], "x-ms-correlation-request-id": [ - "9b08cec5-846c-47b9-91af-2ee9d0dec3ba" + "d7cdc6d2-f126-435c-bf98-ba4404dfa293" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085618Z:9b08cec5-846c-47b9-91af-2ee9d0dec3ba" + "KOREASOUTH:20200810T062845Z:d7cdc6d2-f126-435c-bf98-ba4404dfa293" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:18 GMT" + "Mon, 10 Aug 2020 06:28:45 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,10 +240,10 @@ "-1" ], "Content-Length": [ - "1170" + "274" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg7941/providers/Microsoft.KeyVault/vaults/pshtestvault2685\",\r\n \"name\": \"pshtestvault2685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg3785/providers/Microsoft.KeyVault/vaults/pshtestvault8327\",\r\n \"name\": \"pshtestvault8327\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -253,16 +253,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e2f2183-d7da-4de6-a55d-d69a59e02256" + "2f7c0fac-5421-41f6-9faa-4579c286eea4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -273,16 +273,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-request-id": [ - "f9f3d311-d188-45d7-bfbd-9169812978eb" + "5ba24915-fddc-45f8-9a9d-72fd0222cbb3" ], "x-ms-correlation-request-id": [ - "f9f3d311-d188-45d7-bfbd-9169812978eb" + "5ba24915-fddc-45f8-9a9d-72fd0222cbb3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085656Z:f9f3d311-d188-45d7-bfbd-9169812978eb" + "KOREASOUTH:20200810T062923Z:5ba24915-fddc-45f8-9a9d-72fd0222cbb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:56 GMT" + "Mon, 10 Aug 2020 06:29:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,10 +300,10 @@ "-1" ], "Content-Length": [ - "1375" + "216" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg7941/providers/Microsoft.KeyVault/vaults/pshtestvault2685\",\r\n \"name\": \"pshtestvault2685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -313,16 +313,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e39c6fb7-cb6a-4181-9f2c-39bb9af24908" + "f2eb3c48-8314-4925-953f-dfa23af4ada4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -333,16 +333,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-request-id": [ - "d562d574-b8c4-447a-a5d1-d1db76343aeb" + "c803a1ed-0f04-4106-a063-04c9d553898b" ], "x-ms-correlation-request-id": [ - "d562d574-b8c4-447a-a5d1-d1db76343aeb" + "c803a1ed-0f04-4106-a063-04c9d553898b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085657Z:d562d574-b8c4-447a-a5d1-d1db76343aeb" + "KOREASOUTH:20200810T062924Z:c803a1ed-0f04-4106-a063-04c9d553898b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,7 +351,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:56 GMT" + "Mon, 10 Aug 2020 06:29:23 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,10 +360,10 @@ "-1" ], "Content-Length": [ - "1375" + "216" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg7941/providers/Microsoft.KeyVault/vaults/pshtestvault2685\",\r\n \"name\": \"pshtestvault2685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -373,16 +373,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf38c233-fed2-4946-9377-fb488ae73027" + "92523284-f964-4bd2-94b0-2f57a70c0d4b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -393,19 +393,22 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UGURGCoIXEqCNOXVDccGeYNc2SPaXu5HS1ihFki7adk=" + "GYtrl7n5z84eTj2S4sd74eB78FIUomXxNU+Efgry7Z0=" ], "request-id": [ - "1a6c9f1d-8b72-4314-a2f9-3d373ab5a501" + "6233e91a-814b-46d0-9937-f818a92f78f3" ], "client-request-id": [ - "cf38c233-fed2-4946-9377-fb488ae73027" + "92523284-f964-4bd2-94b0-2f57a70c0d4b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KrHuE5W4vP9O9Eq_3WyDXy4kpwVo4xEHPaUa7IkloLTN9OOo4WFE85e5mtYloQKLy97ceL_tMhIAFfk3szOHLDlkZXEo5ACx-qJYat5cB0QOX2r8A0B6TZ2oidDAEdqb.-KfVrRu8_L5BARitU1GgUrQERrBs4aBL5Vi-a1AgnoE" + "4NLOfHXljWgfKfB7Nw3PpHbkeBs7osBCmjs0urns7oPDQVkle0UCFVNSveU6mbeKzZIiGgpun8mk9YyvxTuAmMXjud2kF86ImQRHFQjtqSzXvpXKqak8hPA0WiBGYzek.UiGbNQSp1WJ1sR1WTcp1R1_dTv5WdDFtILaUu1qe4Cw" + ], + "x-ms-resource-unit": [ + "2" ], "DataServiceVersion": [ "3.0;" @@ -423,10 +426,10 @@ "ASP.NET" ], "Duration": [ - "334702" + "295351" ], "Date": [ - "Tue, 31 Mar 2020 08:56:18 GMT" + "Mon, 10 Aug 2020 06:28:45 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -438,32 +441,32 @@ "219" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"1a6c9f1d-8b72-4314-a2f9-3d373ab5a501\",\r\n \"date\": \"2020-03-31T08:56:19\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"6233e91a-814b-46d0-9937-f818a92f78f3\",\r\n \"date\": \"2020-08-10T06:28:45\"\r\n }\r\n}", "StatusCode": 403 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczY5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "27fca4ac-e9dc-40a8-a56c-e103bd53bf6a" + "502e7a10-3677-465d-942a-8b6a2139aba9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "511" + "513" ] }, "ResponseHeaders": { @@ -474,10 +477,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "a236c82d-0a58-495d-b3f7-222f82fa496b" + "9d12df04-9eb7-4801-aa15-c0e17b39a94c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,19 +498,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "3bcb5b3b-4722-44d1-9b9b-f9eac9032d5c" + "d37bf457-9a45-41b8-8bc7-4d197cc59f69" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085626Z:3bcb5b3b-4722-44d1-9b9b-f9eac9032d5c" + "KOREASOUTH:20200810T062853Z:d37bf457-9a45-41b8-8bc7-4d197cc59f69" ], "Date": [ - "Tue, 31 Mar 2020 08:56:25 GMT" + "Mon, 10 Aug 2020 06:28:52 GMT" ], "Content-Length": [ - "561" + "563" ], "Content-Type": [ "application/json; charset=utf-8" @@ -516,20 +519,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps690.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps410.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczY5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -540,10 +543,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "d58c3900-78a9-41d9-a7f4-1ff66e1d03db" + "548f2c02-2e89-4a29-b12b-814d0f4a7d78" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -561,19 +564,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11986" ], "x-ms-correlation-request-id": [ - "2b9ae647-59d6-44f0-be5a-240788d25b23" + "9c75ddcd-b41e-4d28-b425-e13cc4d357d2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085656Z:2b9ae647-59d6-44f0-be5a-240788d25b23" + "KOREASOUTH:20200810T062923Z:9c75ddcd-b41e-4d28-b425-e13cc4d357d2" ], "Date": [ - "Tue, 31 Mar 2020 08:56:56 GMT" + "Mon, 10 Aug 2020 06:29:22 GMT" ], "Content-Length": [ - "557" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -582,26 +585,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps690.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps410.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczY5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7b2c32f-db8a-4594-9150-b62abcca477d" + "00c822e3-faa1-4878-9024-f7b906406fd4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -612,10 +615,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "3128becf-83a8-44fb-ad1d-d3773cffaa68" + "4fadac4d-1f41-4ba8-9f91-37eef014da44" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -633,19 +636,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11985" ], "x-ms-correlation-request-id": [ - "75b0f243-405b-465e-bee1-3249f30fd6c8" + "51af74ee-2312-4309-be8a-bb344902f874" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085656Z:75b0f243-405b-465e-bee1-3249f30fd6c8" + "KOREASOUTH:20200810T062923Z:51af74ee-2312-4309-be8a-bb344902f874" ], "Date": [ - "Tue, 31 Mar 2020 08:56:56 GMT" + "Mon, 10 Aug 2020 06:29:23 GMT" ], "Content-Length": [ - "557" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -654,26 +657,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps690.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps410.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczY5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "986b8b21-09a4-40d3-9629-5a1cc5f1a7bd" + "92a61587-c309-4479-9e54-4c2c6006a88e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -684,10 +687,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "a982d044-9e97-49ee-b496-170a1f93e049" + "6fc782f9-3b0f-4171-982e-bb247ee7e947" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,19 +708,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11984" ], "x-ms-correlation-request-id": [ - "ea5f7af5-c79e-45b2-8b3f-4f0b419a3ed6" + "e3331b4c-7f84-4519-89b0-617ea42acc24" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085656Z:ea5f7af5-c79e-45b2-8b3f-4f0b419a3ed6" + "KOREASOUTH:20200810T062924Z:e3331b4c-7f84-4519-89b0-617ea42acc24" ], "Date": [ - "Tue, 31 Mar 2020 08:56:56 GMT" + "Mon, 10 Aug 2020 06:29:23 GMT" ], "Content-Length": [ - "557" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -726,26 +729,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps690.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps410.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/PS690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9QUzY5MD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/PS410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9QUzQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e0342a6-3962-4853-be03-528a9d01c24b" + "5a2db30d-3fd1-4003-9d4f-3d94f92f8881" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -756,10 +759,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "7d477d42-a313-4c63-8261-aa451719f646" + "f8ccd9df-0a96-4cc2-b90d-e6656f635193" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -777,19 +780,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11983" ], "x-ms-correlation-request-id": [ - "ca88a8be-7ee9-46e8-8a38-c98d13c36245" + "5362db45-1e14-4242-9dbb-b327e313eddb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085657Z:ca88a8be-7ee9-46e8-8a38-c98d13c36245" + "KOREASOUTH:20200810T062924Z:5362db45-1e14-4242-9dbb-b327e313eddb" ], "Date": [ - "Tue, 31 Mar 2020 08:56:57 GMT" + "Mon, 10 Aug 2020 06:29:24 GMT" ], "Content-Length": [ - "557" + "559" ], "Content-Type": [ "application/json; charset=utf-8" @@ -798,26 +801,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps690\",\r\n \"name\": \"ps690\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps690.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps410\",\r\n \"name\": \"ps410\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps410.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps901/providers/Microsoft.KeyVault/vaults/ps690?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzOTAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQvdmF1bHRzL3BzNjkwP2FwaS12ZXJzaW9uPTIwMTktMDktMDE=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6609/providers/Microsoft.KeyVault/vaults/ps410?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjYwOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczQxMD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0907a04d-4ffa-4558-8a11-7a293bd672b3" + "38c3e2b8-cd5d-4218-8289-e363de0eaec7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -831,13 +834,13 @@ "gateway" ], "x-ms-request-id": [ - "488a2340-24ef-4c8d-b42b-044b3570afbe" + "e4dbd83f-da66-47b9-9c93-cc13825dfc56" ], "x-ms-correlation-request-id": [ - "488a2340-24ef-4c8d-b42b-044b3570afbe" + "e4dbd83f-da66-47b9-9c93-cc13825dfc56" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085657Z:488a2340-24ef-4c8d-b42b-044b3570afbe" + "KOREASOUTH:20200810T062924Z:e4dbd83f-da66-47b9-9c93-cc13825dfc56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -846,7 +849,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:57 GMT" + "Mon, 10 Aug 2020 06:29:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -855,29 +858,29 @@ "-1" ], "Content-Length": [ - "97" + "98" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps901' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps6609' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7732/providers/Microsoft.KeyVault/vaults/ps1138?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzczMi9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczExMzg/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6609/providers/Microsoft.KeyVault/managedHSMs/ps410?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjYwOS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNDEwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ae1da70-8a10-4d30-9a03-3ae7c4ec7b68" + "e95294cf-1f89-4109-b2a9-6668f4f558a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -891,13 +894,13 @@ "gateway" ], "x-ms-request-id": [ - "250b1e10-d59f-4f27-a4dd-72a86080c0c9" + "ba0c8404-a3b1-4474-b821-01b166e12484" ], "x-ms-correlation-request-id": [ - "250b1e10-d59f-4f27-a4dd-72a86080c0c9" + "ba0c8404-a3b1-4474-b821-01b166e12484" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085657Z:250b1e10-d59f-4f27-a4dd-72a86080c0c9" + "KOREASOUTH:20200810T062924Z:ba0c8404-a3b1-4474-b821-01b166e12484" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +909,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:56:57 GMT" + "Mon, 10 Aug 2020 06:29:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,29 +918,29 @@ "-1" ], "Content-Length": [ - "142" + "98" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps1138' under resource group 'ps7732' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps6609' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps7732?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNzczMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/vaults/ps1942?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE5NDI/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b6dec73b-ac67-4fcf-af47-5a64aaba694b" + "f1102e69-3ab2-4625-b03d-1be20c7fa1f1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -947,23 +950,77 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "x-ms-failure-cause": [ + "gateway" ], - "Retry-After": [ - "15" + "x-ms-request-id": [ + "fa955d85-3356-4d14-b016-d0b78116d443" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "x-ms-correlation-request-id": [ + "fa955d85-3356-4d14-b016-d0b78116d443" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T062925Z:fa955d85-3356-4d14-b016-d0b78116d443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:29:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "210" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps1942' under resource group 'ps8689' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8689/providers/Microsoft.KeyVault/managedHSMs/ps1942?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODY4OS9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzMTk0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ee692486-2215-4334-be8e-7ed5548c0631" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "314aedf7-9c05-4dcf-ba8a-451bef5c1f68" + "2ba67add-4096-4533-aa72-4f68c40c41d7" ], "x-ms-correlation-request-id": [ - "314aedf7-9c05-4dcf-ba8a-451bef5c1f68" + "2ba67add-4096-4533-aa72-4f68c40c41d7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085701Z:314aedf7-9c05-4dcf-ba8a-451bef5c1f68" + "KOREASOUTH:20200810T062925Z:2ba67add-4096-4533-aa72-4f68c40c41d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -972,29 +1029,38 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:57:00 GMT" + "Mon, 10 Aug 2020 06:29:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" ], "Expires": [ "-1" ], "Content-Length": [ - "0" + "215" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/managedHSMs/ps1942' under resource group 'ps8689' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps8689?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzODY4OT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "92719d68-1756-4514-a2c1-339c84b210ce" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1005,22 +1071,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" ], "x-ms-request-id": [ - "5f0211d8-5b3d-43b6-b199-55d9fa4d121a" + "62c49595-e9e0-497d-9f35-0cb68dab85bc" ], "x-ms-correlation-request-id": [ - "5f0211d8-5b3d-43b6-b199-55d9fa4d121a" + "62c49595-e9e0-497d-9f35-0cb68dab85bc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085716Z:5f0211d8-5b3d-43b6-b199-55d9fa4d121a" + "KOREASOUTH:20200810T062928Z:62c49595-e9e0-497d-9f35-0cb68dab85bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1029,7 +1095,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:57:15 GMT" + "Mon, 10 Aug 2020 06:29:27 GMT" ], "Expires": [ "-1" @@ -1042,16 +1108,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1062,22 +1128,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-request-id": [ - "ba63ec0a-5a2f-4305-8a32-50a19edc079d" + "62c8d957-bfe5-4ef7-b027-5cc4dc7b1e86" ], "x-ms-correlation-request-id": [ - "ba63ec0a-5a2f-4305-8a32-50a19edc079d" + "62c8d957-bfe5-4ef7-b027-5cc4dc7b1e86" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085731Z:ba63ec0a-5a2f-4305-8a32-50a19edc079d" + "KOREASOUTH:20200810T062943Z:62c8d957-bfe5-4ef7-b027-5cc4dc7b1e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1152,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:57:31 GMT" + "Mon, 10 Aug 2020 06:29:43 GMT" ], "Expires": [ "-1" @@ -1099,16 +1165,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1119,22 +1185,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11980" ], "x-ms-request-id": [ - "6dd50dbe-7b98-452d-9cd5-88c8092d4ad9" + "f78b544f-9b4c-4f97-ac54-0c1969b9f459" ], "x-ms-correlation-request-id": [ - "6dd50dbe-7b98-452d-9cd5-88c8092d4ad9" + "f78b544f-9b4c-4f97-ac54-0c1969b9f459" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085747Z:6dd50dbe-7b98-452d-9cd5-88c8092d4ad9" + "KOREASOUTH:20200810T062959Z:f78b544f-9b4c-4f97-ac54-0c1969b9f459" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,7 +1209,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:57:46 GMT" + "Mon, 10 Aug 2020 06:29:59 GMT" ], "Expires": [ "-1" @@ -1156,16 +1222,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1176,22 +1242,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11980" ], "x-ms-request-id": [ - "3befa360-6e3e-443e-998a-f2581fea8433" + "4fb1e4e1-8903-4665-955a-b42dc9aafac8" ], "x-ms-correlation-request-id": [ - "3befa360-6e3e-443e-998a-f2581fea8433" + "4fb1e4e1-8903-4665-955a-b42dc9aafac8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085802Z:3befa360-6e3e-443e-998a-f2581fea8433" + "KOREASOUTH:20200810T063014Z:4fb1e4e1-8903-4665-955a-b42dc9aafac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1266,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:58:02 GMT" + "Mon, 10 Aug 2020 06:30:14 GMT" ], "Expires": [ "-1" @@ -1213,16 +1279,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1233,22 +1299,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11979" ], "x-ms-request-id": [ - "d4b9ef67-671d-48af-8f73-ef1550609610" + "bb7acee0-b014-4e23-a1c3-dfe3284c7531" ], "x-ms-correlation-request-id": [ - "d4b9ef67-671d-48af-8f73-ef1550609610" + "bb7acee0-b014-4e23-a1c3-dfe3284c7531" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085818Z:d4b9ef67-671d-48af-8f73-ef1550609610" + "KOREASOUTH:20200810T063030Z:bb7acee0-b014-4e23-a1c3-dfe3284c7531" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,7 +1323,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:58:17 GMT" + "Mon, 10 Aug 2020 06:30:29 GMT" ], "Expires": [ "-1" @@ -1270,16 +1336,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1290,22 +1356,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11978" ], "x-ms-request-id": [ - "bd7ee39c-62ad-4ee3-9695-a24d2b0cbabf" + "9081fa5e-7d27-4f7a-b9e6-a13713170a1e" ], "x-ms-correlation-request-id": [ - "bd7ee39c-62ad-4ee3-9695-a24d2b0cbabf" + "9081fa5e-7d27-4f7a-b9e6-a13713170a1e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085833Z:bd7ee39c-62ad-4ee3-9695-a24d2b0cbabf" + "KOREASOUTH:20200810T063045Z:9081fa5e-7d27-4f7a-b9e6-a13713170a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,7 +1380,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:58:33 GMT" + "Mon, 10 Aug 2020 06:30:45 GMT" ], "Expires": [ "-1" @@ -1327,16 +1393,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1347,22 +1413,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11977" ], "x-ms-request-id": [ - "0ccc7b48-694e-4acd-8edc-473c961f2314" + "54481ca8-4b69-49b1-be1e-ed350737c43c" ], "x-ms-correlation-request-id": [ - "0ccc7b48-694e-4acd-8edc-473c961f2314" + "54481ca8-4b69-49b1-be1e-ed350737c43c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085849Z:0ccc7b48-694e-4acd-8edc-473c961f2314" + "KOREASOUTH:20200810T063100Z:54481ca8-4b69-49b1-be1e-ed350737c43c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,7 +1437,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:58:48 GMT" + "Mon, 10 Aug 2020 06:31:00 GMT" ], "Expires": [ "-1" @@ -1384,16 +1450,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1404,16 +1470,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11976" ], "x-ms-request-id": [ - "1272eca2-3d01-4b6d-bb70-085739ad26ce" + "df395d58-d8d6-4ee1-9eda-578fde3d89a7" ], "x-ms-correlation-request-id": [ - "1272eca2-3d01-4b6d-bb70-085739ad26ce" + "df395d58-d8d6-4ee1-9eda-578fde3d89a7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085904Z:1272eca2-3d01-4b6d-bb70-085739ad26ce" + "KOREASOUTH:20200810T063116Z:df395d58-d8d6-4ee1-9eda-578fde3d89a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,7 +1488,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:59:03 GMT" + "Mon, 10 Aug 2020 06:31:15 GMT" ], "Expires": [ "-1" @@ -1435,16 +1501,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc3MzItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjM016SXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzg2ODktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpnMk9Ea3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1455,16 +1521,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11975" ], "x-ms-request-id": [ - "4f574717-8927-4bb6-8f49-1e03cbe24e89" + "8dfc6400-5d13-4a75-8d79-d328734f76d4" ], "x-ms-correlation-request-id": [ - "4f574717-8927-4bb6-8f49-1e03cbe24e89" + "8dfc6400-5d13-4a75-8d79-d328734f76d4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T085904Z:4f574717-8927-4bb6-8f49-1e03cbe24e89" + "KOREASOUTH:20200810T063116Z:8dfc6400-5d13-4a75-8d79-d328734f76d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,7 +1539,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 08:59:04 GMT" + "Mon, 10 Aug 2020 06:31:15 GMT" ], "Expires": [ "-1" @@ -1488,16 +1554,16 @@ ], "Names": { "Test-GetVault": [ - "ps7732", - "ps690", - "ps1138", - "ps901" + "ps8689", + "ps410", + "ps1942", + "ps6609" ] }, "Variables": { - "ResourceGroupName": "pshtestrg7941", + "ResourceGroupName": "pshtestrg3785", "Location": "northcentralus", - "PreCreatedVault": "pshtestvault2685", + "PreCreatedVault": "pshtestvault8327", "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb", "TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" } diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaults.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaults.json index d391dcddf7f9..17150caf1b63 100644 --- a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaults.json +++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.KeyVaultManagementTests/TestListVaults.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b044a06f-6329-47ba-8e50-62ed11d61bc3" + "361205fc-3d74-4924-a4db-f11ebbdb73da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11978" ], "x-ms-request-id": [ - "34a0724d-2a2e-4bf3-9b7c-bc3deaeb3b82" + "b45db92c-6eae-4e08-8c08-8f6042ca40fb" ], "x-ms-correlation-request-id": [ - "34a0724d-2a2e-4bf3-9b7c-bc3deaeb3b82" + "b45db92c-6eae-4e08-8c08-8f6042ca40fb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090003Z:34a0724d-2a2e-4bf3-9b7c-bc3deaeb3b82" + "KOREASOUTH:20200810T064041Z:b45db92c-6eae-4e08-8c08-8f6042ca40fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:00:02 GMT" + "Mon, 10 Aug 2020 06:40:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,10 +54,10 @@ "-1" ], "Content-Length": [ - "249" + "10938" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { @@ -67,16 +67,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d4712df2-64ac-4a8c-8786-772d9918044d" + "50af0ba6-795c-4fde-87bd-b0f3f7b4b3b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -87,16 +87,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11977" ], "x-ms-request-id": [ - "ae552186-551a-41b0-b329-995f23f41c8d" + "c652e000-e81a-4017-bc26-bbb9d49a60da" ], "x-ms-correlation-request-id": [ - "ae552186-551a-41b0-b329-995f23f41c8d" + "c652e000-e81a-4017-bc26-bbb9d49a60da" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090003Z:ae552186-551a-41b0-b329-995f23f41c8d" + "KOREASOUTH:20200810T064042Z:c652e000-e81a-4017-bc26-bbb9d49a60da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -105,7 +105,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:00:02 GMT" + "Mon, 10 Aug 2020 06:40:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,29 +114,29 @@ "-1" ], "Content-Length": [ - "5958" + "7541" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6387?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjM4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps5160?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNTE2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "84b99b97-04e0-4a7e-85ca-870d125ed6ff" + "63dd3aa1-4f7c-4035-b5f0-af1d9d3eec8b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,16 +153,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-request-id": [ - "243dff5c-073e-49f9-934d-4f1a863329fc" + "927a5997-5058-43be-af52-4a24e2a806b1" ], "x-ms-correlation-request-id": [ - "243dff5c-073e-49f9-934d-4f1a863329fc" + "927a5997-5058-43be-af52-4a24e2a806b1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090007Z:243dff5c-073e-49f9-934d-4f1a863329fc" + "KOREASOUTH:20200810T064043Z:927a5997-5058-43be-af52-4a24e2a806b1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,7 +171,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:00:06 GMT" + "Mon, 10 Aug 2020 06:40:43 GMT" ], "Content-Length": [ "165" @@ -183,7 +183,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387\",\r\n \"name\": \"ps6387\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160\",\r\n \"name\": \"ps5160\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -193,16 +193,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2cb0f84c-0f5d-45a2-80f6-ba2e516efbe4" + "e6d6de0a-11c2-436c-b720-6092f220ed80" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -213,16 +213,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11976" ], "x-ms-request-id": [ - "c7e1d805-96af-4c8e-a606-0e049f73af39" + "a6c0d0ec-dca7-4e25-afeb-ed908ec86c46" ], "x-ms-correlation-request-id": [ - "c7e1d805-96af-4c8e-a606-0e049f73af39" + "a6c0d0ec-dca7-4e25-afeb-ed908ec86c46" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090007Z:c7e1d805-96af-4c8e-a606-0e049f73af39" + "KOREASOUTH:20200810T064043Z:a6c0d0ec-dca7-4e25-afeb-ed908ec86c46" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -231,7 +231,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:00:06 GMT" + "Mon, 10 Aug 2020 06:40:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -240,10 +240,10 @@ "-1" ], "Content-Length": [ - "1170" + "274" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg1927/providers/Microsoft.KeyVault/vaults/pshtestvault6960\",\r\n \"name\": \"pshtestvault6960\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg1924/providers/Microsoft.KeyVault/vaults/pshtestvault1990\",\r\n \"name\": \"pshtestvault1990\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -253,16 +253,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dca4481f-76a3-4705-909f-a4cb2609904c" + "2e650db7-6362-44bd-a4db-5a6759e65488" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -273,16 +273,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11975" ], "x-ms-request-id": [ - "6986def4-2ea5-4aff-9b8b-059f67fd8f5f" + "6b9a0c2a-6dfb-4798-a9ba-67e18d06d6b2" ], "x-ms-correlation-request-id": [ - "6986def4-2ea5-4aff-9b8b-059f67fd8f5f" + "6b9a0c2a-6dfb-4798-a9ba-67e18d06d6b2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090045Z:6986def4-2ea5-4aff-9b8b-059f67fd8f5f" + "KOREASOUTH:20200810T064121Z:6b9a0c2a-6dfb-4798-a9ba-67e18d06d6b2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -291,7 +291,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:00:45 GMT" + "Mon, 10 Aug 2020 06:41:20 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -300,10 +300,10 @@ "-1" ], "Content-Length": [ - "1375" + "218" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg1927/providers/Microsoft.KeyVault/vaults/pshtestvault6960\",\r\n \"name\": \"pshtestvault6960\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -313,16 +313,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ff8dc18-a1bd-4617-948c-8e236086a187" + "d280cbbe-6929-4f8e-bd7a-c3e4f0cdb759" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -333,16 +333,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11974" ], "x-ms-request-id": [ - "3b29eb5a-c804-4b8a-980b-07dabd593444" + "fdb44d30-f6f8-4430-8b4d-51fbb58a24f0" ], "x-ms-correlation-request-id": [ - "3b29eb5a-c804-4b8a-980b-07dabd593444" + "fdb44d30-f6f8-4430-8b4d-51fbb58a24f0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:3b29eb5a-c804-4b8a-980b-07dabd593444" + "KOREASOUTH:20200810T064154Z:fdb44d30-f6f8-4430-8b4d-51fbb58a24f0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -351,7 +351,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:19 GMT" + "Mon, 10 Aug 2020 06:41:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -360,10 +360,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -373,16 +373,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e9924fa-9d89-41ca-911d-33473d1f3d64" + "1c1e3561-b39b-4395-8078-57cf113656e8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -393,16 +393,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11972" ], "x-ms-request-id": [ - "c59726b0-35f6-42d2-8c43-65c02752bee6" + "9f8f71b2-ae67-4f57-be64-fdc40efd85d7" ], "x-ms-correlation-request-id": [ - "c59726b0-35f6-42d2-8c43-65c02752bee6" + "9f8f71b2-ae67-4f57-be64-fdc40efd85d7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:c59726b0-35f6-42d2-8c43-65c02752bee6" + "KOREASOUTH:20200810T064154Z:9f8f71b2-ae67-4f57-be64-fdc40efd85d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +411,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:19 GMT" + "Mon, 10 Aug 2020 06:41:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -433,16 +433,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1f7cb620-2683-49d1-b4c3-f5b2bae60196" + "195f098d-e083-40b2-916d-7b9767077643" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -453,16 +453,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11966" ], "x-ms-request-id": [ - "d06d2557-1330-434a-b879-834014afbf69" + "861646d5-b360-4023-afb9-cce10f0ab149" ], "x-ms-correlation-request-id": [ - "d06d2557-1330-434a-b879-834014afbf69" + "861646d5-b360-4023-afb9-cce10f0ab149" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:d06d2557-1330-434a-b879-834014afbf69" + "KOREASOUTH:20200810T064155Z:861646d5-b360-4023-afb9-cce10f0ab149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,7 +471,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -480,10 +480,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -493,16 +493,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d45c919-4c03-439f-9bda-9ee43ff46558" + "07dc1e9b-1663-459b-a1c6-19dbd8bf589f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -513,16 +513,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11964" ], "x-ms-request-id": [ - "b2524ed7-c93b-4dea-bb96-5de6c6384278" + "0d6763b8-f1b9-4cba-828e-d4ec72d20b98" ], "x-ms-correlation-request-id": [ - "b2524ed7-c93b-4dea-bb96-5de6c6384278" + "0d6763b8-f1b9-4cba-828e-d4ec72d20b98" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:b2524ed7-c93b-4dea-bb96-5de6c6384278" + "KOREASOUTH:20200810T064156Z:0d6763b8-f1b9-4cba-828e-d4ec72d20b98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -531,7 +531,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,10 +540,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -553,16 +553,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61feccd1-c515-4707-ac26-780f61788005" + "d6fb19b0-f868-4730-91ce-178d90dcec58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -573,16 +573,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11962" ], "x-ms-request-id": [ - "3ea994cf-f027-49ee-918d-aeeceba82d70" + "e8a47a70-d59c-42a3-bba4-8314a489961d" ], "x-ms-correlation-request-id": [ - "3ea994cf-f027-49ee-918d-aeeceba82d70" + "e8a47a70-d59c-42a3-bba4-8314a489961d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:3ea994cf-f027-49ee-918d-aeeceba82d70" + "KOREASOUTH:20200810T064156Z:e8a47a70-d59c-42a3-bba4-8314a489961d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -591,7 +591,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:55 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -600,10 +600,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -613,16 +613,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84001921-b5fa-4b41-a306-91cfd8cff704" + "9034ece9-846e-4448-a2dd-14f1749321bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -633,16 +633,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11960" ], "x-ms-request-id": [ - "7a29c3ec-5c11-48b7-94fc-dc1fc07dbf45" + "f2628c4c-3184-4210-b626-ae257c9f83fd" ], "x-ms-correlation-request-id": [ - "7a29c3ec-5c11-48b7-94fc-dc1fc07dbf45" + "f2628c4c-3184-4210-b626-ae257c9f83fd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:7a29c3ec-5c11-48b7-94fc-dc1fc07dbf45" + "KOREASOUTH:20200810T064156Z:f2628c4c-3184-4210-b626-ae257c9f83fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,7 +651,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,10 +660,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -673,16 +673,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44b0b76c-eed1-4ea2-b19d-1bc9fe61ac69" + "4fb53d8d-423c-4ac1-ba49-d5b2f3d1084e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -693,16 +693,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11958" ], "x-ms-request-id": [ - "0b675877-fbb9-436b-926c-4f571740e608" + "d76646d7-887c-4f06-8f71-19c52541cd3c" ], "x-ms-correlation-request-id": [ - "0b675877-fbb9-436b-926c-4f571740e608" + "d76646d7-887c-4f06-8f71-19c52541cd3c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:0b675877-fbb9-436b-926c-4f571740e608" + "KOREASOUTH:20200810T064156Z:d76646d7-887c-4f06-8f71-19c52541cd3c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -711,7 +711,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,10 +720,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -733,16 +733,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d8893d4-4407-4e05-ae74-0b4253cc698d" + "f88970cc-f44c-4e7f-8f03-d706bd01b3ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -753,16 +753,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11956" ], "x-ms-request-id": [ - "5636d2f7-90dc-43b7-a6a2-fe4124858568" + "ecc9996e-4731-4ffd-b834-cc01637242cf" ], "x-ms-correlation-request-id": [ - "5636d2f7-90dc-43b7-a6a2-fe4124858568" + "ecc9996e-4731-4ffd-b834-cc01637242cf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:5636d2f7-90dc-43b7-a6a2-fe4124858568" + "KOREASOUTH:20200810T064157Z:ecc9996e-4731-4ffd-b834-cc01637242cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -771,7 +771,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -780,10 +780,10 @@ "-1" ], "Content-Length": [ - "1338" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps267\",\r\n \"name\": \"ps267\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps4721\",\r\n \"name\": \"ps4721\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"asdf\": \"qwerty\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7548/providers/Microsoft.KeyVault/vaults/ps5726\",\r\n \"name\": \"ps5726\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/pshtestrg329/providers/Microsoft.KeyVault/vaults/pshtestvault5414\",\r\n \"name\": \"pshtestvault5414\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"testtag\": \"testvalue\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -793,16 +793,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d7c1cbd-367a-4daf-88f1-bfbab5a05a87" + "0ae50a65-3334-4a0c-aa99-2ffd3e6a5e1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -813,19 +813,22 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "TS734Rl6ng795Izu9y0PY2DAdtYu6I2GKPGIZyN4T6E=" + "BcM9BIlMb+ZClxdtmrIet155TCJPXStgRNy3Xs9WKzc=" ], "request-id": [ - "bbfa2c9b-7a0b-4ac4-98dd-ec9bf25a93a0" + "370fd80b-127e-44ba-b1ef-3a9f499e7a70" ], "client-request-id": [ - "6d7c1cbd-367a-4daf-88f1-bfbab5a05a87" + "0ae50a65-3334-4a0c-aa99-2ffd3e6a5e1e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Se-bZHfW5_n99tSpFa2o8RKlQ6LXv_jR4H2-bzD70vNnBUyZt2WilDAdiy4LlDq1iX4wySRlh_7lvjFp5WqE7GkZwcthiCpZmcmtTT_bg3Y4yn8Pzlsw9LvJLJj5l32x.49lt993roxvNq38KxaHGo9AscBevjgvORyQU--ZsrGs" + "S9YjvMN3RgiA3te4s0VJ8WdMj9Pk8fWOQnlqhA8MXk7fvCrSNwt0Px7RaDJ4356FW8WN8GwRmqAyKqsi4gtMqHsb3mq2EkK8864_dF9mZgyXU4yyNyEmaFBhxsOTX_2W.2I6wtbIxdx46-2n_Ju9AGNv_QRXkmG3tLB7AutCe6hQ" + ], + "x-ms-resource-unit": [ + "2" ], "DataServiceVersion": [ "3.0;" @@ -843,10 +846,10 @@ "ASP.NET" ], "Duration": [ - "329454" + "287589" ], "Date": [ - "Tue, 31 Mar 2020 09:00:07 GMT" + "Mon, 10 Aug 2020 06:40:43 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -858,7 +861,7 @@ "219" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"bbfa2c9b-7a0b-4ac4-98dd-ec9bf25a93a0\",\r\n \"date\": \"2020-03-31T09:00:07\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"370fd80b-127e-44ba-b1ef-3a9f499e7a70\",\r\n \"date\": \"2020-08-10T06:40:44\"\r\n }\r\n}", "StatusCode": 403 }, { @@ -868,16 +871,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d397b9c-b1de-40bd-b029-6c27d82a2bc8" + "c525ef3f-0caa-4cea-9739-88d360f16201" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Graph.RBAC.Version1.6.GraphRbacManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -888,19 +891,22 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "b203fb3/+XasVkOtCF6NEf3BQWXCRQPvel0BUEMaHtU=" + "RoSyBIIaN30hAmu9SEgI7ZBNQXuy33sdsgZZFASGMzU=" ], "request-id": [ - "0e78a8dd-ba36-4f14-a197-cbfd000cd79a" + "71f8567a-8f11-436d-90ca-33203fa516e7" ], "client-request-id": [ - "4d397b9c-b1de-40bd-b029-6c27d82a2bc8" + "c525ef3f-0caa-4cea-9739-88d360f16201" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "RxCBWxOi4xmMsRf0zep_wlHSUDeiC33rUp0YXrBc-uMlkijdKZ7Mb7WoVoDl4HMs5-DWYD4uO-ED8OooPljLNwGywEWqnLF9OnKUVHYuwBcakQUgFZnQe-RsscZ3jwIK.MJ0K9ECXAi9Yn1_3ranYgqjDbZNH-GnWgEi-KN9YC70" + "jUmWt8ZxJ_awKPr1ift0VgYGq9foImkGQpjDregE6TO3X4FMn74oOBKbBRPKz1cbd3inKtA4oSRmgc7AlnSFv9f1sLTs7vA8KFekXVtTfAIF992HH56sm56x5TLg6YJ0.NuzVFAqp5oMpzRBA4qGYbAxOlhVU4l8PrVuk_EwfKPA" + ], + "x-ms-resource-unit": [ + "2" ], "DataServiceVersion": [ "3.0;" @@ -918,10 +924,10 @@ "ASP.NET" ], "Duration": [ - "367962" + "394441" ], "Date": [ - "Tue, 31 Mar 2020 09:00:44 GMT" + "Mon, 10 Aug 2020 06:41:20 GMT" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -933,32 +939,32 @@ "219" ] }, - "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"0e78a8dd-ba36-4f14-a197-cbfd000cd79a\",\r\n \"date\": \"2020-03-31T09:00:45\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"odata.error\": {\r\n \"code\": \"Authorization_RequestDenied\",\r\n \"message\": {\r\n \"lang\": \"en\",\r\n \"value\": \"Insufficient privileges to complete the operation.\"\r\n },\r\n \"requestId\": \"71f8567a-8f11-436d-90ca-33203fa516e7\",\r\n \"date\": \"2020-08-10T06:41:21\"\r\n }\r\n}", "StatusCode": 403 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE2ODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6faa78dc-91a4-49a5-8178-a6924acdf290" + "e1d1c2b7-3e85-463d-b536-f0295e99c8ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "511" + "513" ] }, "ResponseHeaders": { @@ -969,10 +975,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "f58a8d55-07f1-4388-8835-bbf1b7faae8a" + "109c4a9c-4efb-4602-a230-97ff3628f09e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -990,19 +996,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "34b7adeb-f813-43fe-9443-806af43b971c" + "a71aeef3-9d02-463d-9abd-bf3166e910f9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090014Z:34b7adeb-f813-43fe-9443-806af43b971c" + "KOREASOUTH:20200810T064050Z:a71aeef3-9d02-463d-9abd-bf3166e910f9" ], "Date": [ - "Tue, 31 Mar 2020 09:00:14 GMT" + "Mon, 10 Aug 2020 06:40:50 GMT" ], "Content-Length": [ - "561" + "566" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1011,20 +1017,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps168.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps1685.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE2OD9hcGktdmVyc2lvbj0yMDE5LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczE2ODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1035,10 +1041,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "5ddc1c7a-9ce1-4e64-8b09-19b5a47f4c27" + "a43be145-c19a-4593-b4a1-77dfd2ca974d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,19 +1062,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11992" ], "x-ms-correlation-request-id": [ - "81db6c3e-185b-493e-8200-e764eacdf91e" + "8179ccda-1771-4649-8c15-b0741b39f9d7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090045Z:81db6c3e-185b-493e-8200-e764eacdf91e" + "KOREASOUTH:20200810T064120Z:8179ccda-1771-4649-8c15-b0741b39f9d7" ], "Date": [ - "Tue, 31 Mar 2020 09:00:44 GMT" + "Mon, 10 Aug 2020 06:41:20 GMT" ], "Content-Length": [ - "557" + "562" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1077,32 +1083,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps168.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps1685.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyODk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcyODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"sku\": {\r\n \"name\": \"standard\",\r\n \"family\": \"A\"\r\n },\r\n \"accessPolicies\": [],\r\n \"vaultUri\": \"\",\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1294bb1c-1f96-4041-9408-8f9ad47d30c4" + "6a82ce3a-d4d1-4007-9ab0-32b9262f50a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "556" + "558" ] }, "ResponseHeaders": { @@ -1113,10 +1119,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "db831014-9e06-4a37-9696-86d2248ee30d" + "076dacfd-b3d0-49a0-8d51-b84922dd75af" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1134,19 +1140,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "1cea0a52-bb86-4e3a-9578-67a1cccca2b8" + "aa430da7-6a32-4433-9663-05d5d0d5f111" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090050Z:1cea0a52-bb86-4e3a-9578-67a1cccca2b8" + "KOREASOUTH:20200810T064124Z:aa430da7-6a32-4433-9663-05d5d0d5f111" ], "Date": [ - "Tue, 31 Mar 2020 09:00:50 GMT" + "Mon, 10 Aug 2020 06:41:23 GMT" ], "Content-Length": [ - "583" + "585" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1155,20 +1161,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps8289.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps7285.vault.azure.net\",\r\n \"provisioningState\": \"RegisteringDns\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289?api-version=2019-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczgyODk/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285?api-version=2019-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczcyODU/YXBpLXZlcnNpb249MjAxOS0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.1.0.0" ] }, "ResponseHeaders": { @@ -1179,10 +1185,10 @@ "no-cache" ], "x-ms-keyvault-service-version": [ - "1.1.0.276" + "1.1.16.0" ], "x-ms-request-id": [ - "2de1656c-dfb3-46c0-b557-e20e688a7a43" + "8ba4133c-9f41-4144-8118-70bd91d08c4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1190,9 +1196,6 @@ "X-Content-Type-Options": [ "nosniff" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "Server": [ "Microsoft-IIS/10.0" ], @@ -1202,45 +1205,468 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "2a9f21c0-14a6-4f85-a6d6-eca7d534da34" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064154Z:2a9f21c0-14a6-4f85-a6d6-eca7d534da34" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:54 GMT" + ], + "Content-Length": [ + "581" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"vaultUri\": \"https://ps7285.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c819989c-1b93-43b0-9581-3427116ec65c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "3232dcbc-5ad2-434f-9182-0d54ad48455f" + ], + "x-ms-correlation-request-id": [ + "3232dcbc-5ad2-434f-9182-0d54ad48455f" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064154Z:3232dcbc-5ad2-434f-9182-0d54ad48455f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e077f947-4efb-4b2f-9ef6-607069830aa3" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "b9b300ed-a9a3-408b-8c73-1f7fe332a39c" + ], + "x-ms-correlation-request-id": [ + "b9b300ed-a9a3-408b-8c73-1f7fe332a39c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064155Z:b9b300ed-a9a3-408b-8c73-1f7fe332a39c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "054f0600-29c2-4a87-8dd5-c592d434ebf9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "9656354e-65a3-4a2c-bc9c-e7b9886a0bb7" + ], + "x-ms-correlation-request-id": [ + "9656354e-65a3-4a2c-bc9c-e7b9886a0bb7" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064156Z:9656354e-65a3-4a2c-bc9c-e7b9886a0bb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f2abc351-ecd9-42b4-ab34-568212e3d93e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "9c3398e3-ab17-454b-bb1f-f17281dffc8d" + ], + "x-ms-correlation-request-id": [ + "9c3398e3-ab17-454b-bb1f-f17281dffc8d" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064156Z:9c3398e3-ab17-454b-bb1f-f17281dffc8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6f05d35-1882-4639-b765-ff12944f8a12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "9c6bb2ab-477a-42d2-97d1-b3603cc535e2" + ], + "x-ms-correlation-request-id": [ + "9c6bb2ab-477a-42d2-97d1-b3603cc535e2" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064156Z:9c6bb2ab-477a-42d2-97d1-b3603cc535e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be30d2aa-42ca-4500-bb6b-8f799ecf81c0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "ff674293-1c7f-4764-bdd1-bd27a93b9e2f" + ], "x-ms-correlation-request-id": [ - "993974af-4660-4549-8162-1aca1cd932ba" + "ff674293-1c7f-4764-bdd1-bd27a93b9e2f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:993974af-4660-4549-8162-1aca1cd932ba" + "KOREASOUTH:20200810T064156Z:ff674293-1c7f-4764-bdd1-bd27a93b9e2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Content-Length": [ - "579" + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1f5c7318-5996-49cc-b286-9bca825c832e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "7fd04dcc-9f2f-4e65-8a3e-e5028b73f6f4" + ], + "x-ms-correlation-request-id": [ + "7fd04dcc-9f2f-4e65-8a3e-e5028b73f6f4" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064157Z:7fd04dcc-9f2f-4e65-8a3e-e5028b73f6f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "12" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"West US\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n },\r\n \"properties\": {\r\n \"sku\": {\r\n \"family\": \"A\",\r\n \"name\": \"standard\"\r\n },\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"accessPolicies\": [],\r\n \"enabledForDeployment\": false,\r\n \"enabledForDiskEncryption\": false,\r\n \"enabledForTemplateDeployment\": false,\r\n \"enableSoftDelete\": true,\r\n \"enablePurgeProtection\": true,\r\n \"vaultUri\": \"https://ps8289.vault.azure.net/\",\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd51d418-a390-449e-ac6d-d263e6975389" + "d8b6e375-ee07-441a-b1c0-f03181ca0d1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1251,16 +1677,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11955" ], "x-ms-request-id": [ - "3824a4eb-3504-4c43-afd2-9bb42055115c" + "ebe4f2ed-0d7d-4e6a-9a81-622ac5fe21d1" ], "x-ms-correlation-request-id": [ - "3824a4eb-3504-4c43-afd2-9bb42055115c" + "ebe4f2ed-0d7d-4e6a-9a81-622ac5fe21d1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:3824a4eb-3504-4c43-afd2-9bb42055115c" + "KOREASOUTH:20200810T064157Z:ebe4f2ed-0d7d-4e6a-9a81-622ac5fe21d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1269,7 +1695,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1278,29 +1704,29 @@ "-1" ], "Content-Length": [ - "442" + "12" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNjM4Ny9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab73fa58-3a5c-4277-bf08-3a3556e249fb" + "99a3b338-25d9-4937-9e5f-3b5d43717331" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1311,16 +1737,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11970" ], "x-ms-request-id": [ - "4e9e84f1-acda-4910-b34d-5649b5ebc9ba" + "a511791a-a71f-466e-97d2-e5a4c36708dd" ], "x-ms-correlation-request-id": [ - "4e9e84f1-acda-4910-b34d-5649b5ebc9ba" + "a511791a-a71f-466e-97d2-e5a4c36708dd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090120Z:4e9e84f1-acda-4910-b34d-5649b5ebc9ba" + "KOREASOUTH:20200810T064155Z:a511791a-a71f-466e-97d2-e5a4c36708dd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1329,7 +1755,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:20 GMT" + "Mon, 10 Aug 2020 06:41:54 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,29 +1764,209 @@ "-1" ], "Content-Length": [ - "442" + "444" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps168\",\r\n \"name\": \"ps168\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6387/providers/Microsoft.KeyVault/vaults/ps8289\",\r\n \"name\": \"ps8289\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps7579/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNzU3OS9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23b3355d-3446-4a0d-8820-82b91033e08d" + "4611f1de-1358-43d7-8814-efe5ba00b3d8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "25fbf5f4-8e76-4d21-90f5-e198935e69db" + ], + "x-ms-correlation-request-id": [ + "25fbf5f4-8e76-4d21-90f5-e198935e69db" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064155Z:25fbf5f4-8e76-4d21-90f5-e198935e69db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "444" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps1685\",\r\n \"name\": \"ps1685\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/providers/Microsoft.KeyVault/vaults/ps7285\",\r\n \"name\": \"ps7285\",\r\n \"type\": \"Microsoft.KeyVault/vaults\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"abcdefg\": \"bcdefgh\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZtYW5hZ2VkSFNNcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1f36af7-3347-4432-bfe6-0dd38c1a8d0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "497121a9-a53c-499e-82f2-ee1c7f6a0901" + ], + "x-ms-correlation-request-id": [ + "497121a9-a53c-499e-82f2-ee1c7f6a0901" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064155Z:497121a9-a53c-499e-82f2-ee1c7f6a0901" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps5160/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzNTE2MC9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZtYW5hZ2VkSFNNcycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "684e51e7-d207-45b5-882f-0c08ff9c9fa2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "028a549e-76a8-469a-b1da-64cc86e3c46e" + ], + "x-ms-correlation-request-id": [ + "028a549e-76a8-469a-b1da-64cc86e3c46e" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200810T064155Z:028a549e-76a8-469a-b1da-64cc86e3c46e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 10 Aug 2020 06:41:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps8249/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzODI0OS9yZXNvdXJjZXM/JGZpbHRlcj1yZXNvdXJjZVR5cGUlMjBlcSUyMCdNaWNyb3NvZnQuS2V5VmF1bHQlMkZ2YXVsdHMnJmFwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cd7c9250-6310-463f-b93c-0da0809bbb0b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1374,16 +1980,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11954" ], "x-ms-request-id": [ - "bbfb70ee-e8d0-455e-802c-68cedb2d3834" + "770809b3-dd96-48c1-85a2-ab48d40e7af1" ], "x-ms-correlation-request-id": [ - "bbfb70ee-e8d0-455e-802c-68cedb2d3834" + "770809b3-dd96-48c1-85a2-ab48d40e7af1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090121Z:bbfb70ee-e8d0-455e-802c-68cedb2d3834" + "KOREASOUTH:20200810T064157Z:770809b3-dd96-48c1-85a2-ab48d40e7af1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1998,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:21 GMT" + "Mon, 10 Aug 2020 06:41:56 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1404,26 +2010,26 @@ "98" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps7579' could not be found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceGroupNotFound\",\r\n \"message\": \"Resource group 'ps8249' could not be found.\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps6387?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNjM4Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps5160?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzNTE2MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d519d96-36a9-494b-a677-d082d897fdc2" + "1e5c0b16-4fac-483e-97af-1fad9b209e90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1434,7 +2040,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -1443,13 +2049,13 @@ "14998" ], "x-ms-request-id": [ - "d83ddee0-be40-4d61-8916-c28d69b4d3e2" + "1f89f312-9c0f-458c-8d90-70e5a594a8e7" ], "x-ms-correlation-request-id": [ - "d83ddee0-be40-4d61-8916-c28d69b4d3e2" + "1f89f312-9c0f-458c-8d90-70e5a594a8e7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090126Z:d83ddee0-be40-4d61-8916-c28d69b4d3e2" + "KOREASOUTH:20200810T064200Z:1f89f312-9c0f-458c-8d90-70e5a594a8e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,7 +2064,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:25 GMT" + "Mon, 10 Aug 2020 06:41:59 GMT" ], "Expires": [ "-1" @@ -1471,16 +2077,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1491,22 +2097,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11953" ], "x-ms-request-id": [ - "83dcdf4e-84f7-4c2d-bfcd-2cc40b9575b0" + "5b89ffab-ece0-4596-bf09-3ed15e4afca5" ], "x-ms-correlation-request-id": [ - "83dcdf4e-84f7-4c2d-bfcd-2cc40b9575b0" + "5b89ffab-ece0-4596-bf09-3ed15e4afca5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090141Z:83dcdf4e-84f7-4c2d-bfcd-2cc40b9575b0" + "KOREASOUTH:20200810T064215Z:5b89ffab-ece0-4596-bf09-3ed15e4afca5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1515,7 +2121,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:41 GMT" + "Mon, 10 Aug 2020 06:42:15 GMT" ], "Expires": [ "-1" @@ -1528,16 +2134,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1548,22 +2154,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11952" ], "x-ms-request-id": [ - "e851ba35-9f10-4ddf-9e72-99a09dd0f25e" + "f3440761-f346-432f-8aed-f38ef6651410" ], "x-ms-correlation-request-id": [ - "e851ba35-9f10-4ddf-9e72-99a09dd0f25e" + "f3440761-f346-432f-8aed-f38ef6651410" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090157Z:e851ba35-9f10-4ddf-9e72-99a09dd0f25e" + "KOREASOUTH:20200810T064231Z:f3440761-f346-432f-8aed-f38ef6651410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1572,7 +2178,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:01:56 GMT" + "Mon, 10 Aug 2020 06:42:30 GMT" ], "Expires": [ "-1" @@ -1585,16 +2191,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1605,22 +2211,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11951" ], "x-ms-request-id": [ - "a7a5fa63-65b1-4777-97e9-66f401e42d11" + "b30c9d3c-0588-441d-ae58-cb8650ac56b5" ], "x-ms-correlation-request-id": [ - "a7a5fa63-65b1-4777-97e9-66f401e42d11" + "b30c9d3c-0588-441d-ae58-cb8650ac56b5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090212Z:a7a5fa63-65b1-4777-97e9-66f401e42d11" + "KOREASOUTH:20200810T064246Z:b30c9d3c-0588-441d-ae58-cb8650ac56b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1629,7 +2235,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:02:12 GMT" + "Mon, 10 Aug 2020 06:42:46 GMT" ], "Expires": [ "-1" @@ -1642,16 +2248,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1662,22 +2268,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11950" ], "x-ms-request-id": [ - "26b6e6b8-fe13-408a-94cd-c9df83486428" + "ba1d1e80-98dc-4842-b3ef-07690d720e4d" ], "x-ms-correlation-request-id": [ - "26b6e6b8-fe13-408a-94cd-c9df83486428" + "ba1d1e80-98dc-4842-b3ef-07690d720e4d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090228Z:26b6e6b8-fe13-408a-94cd-c9df83486428" + "KOREASOUTH:20200810T064302Z:ba1d1e80-98dc-4842-b3ef-07690d720e4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,7 +2292,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:02:27 GMT" + "Mon, 10 Aug 2020 06:43:01 GMT" ], "Expires": [ "-1" @@ -1699,16 +2305,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1719,22 +2325,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11949" ], "x-ms-request-id": [ - "72a9f640-ada6-44b1-91c4-2584a9baf196" + "0cab683f-05cb-451a-a337-da1da269d377" ], "x-ms-correlation-request-id": [ - "72a9f640-ada6-44b1-91c4-2584a9baf196" + "0cab683f-05cb-451a-a337-da1da269d377" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090243Z:72a9f640-ada6-44b1-91c4-2584a9baf196" + "KOREASOUTH:20200810T064317Z:0cab683f-05cb-451a-a337-da1da269d377" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1743,7 +2349,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:02:43 GMT" + "Mon, 10 Aug 2020 06:43:16 GMT" ], "Expires": [ "-1" @@ -1756,16 +2362,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1776,22 +2382,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" + "11948" ], "x-ms-request-id": [ - "92a4b6ea-9dd3-4d36-9d1c-580f6a277750" + "886e3689-fb9a-4e74-a952-027fd8acf38e" ], "x-ms-correlation-request-id": [ - "92a4b6ea-9dd3-4d36-9d1c-580f6a277750" + "886e3689-fb9a-4e74-a952-027fd8acf38e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090259Z:92a4b6ea-9dd3-4d36-9d1c-580f6a277750" + "KOREASOUTH:20200810T064332Z:886e3689-fb9a-4e74-a952-027fd8acf38e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1800,7 +2406,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:02:58 GMT" + "Mon, 10 Aug 2020 06:43:32 GMT" ], "Expires": [ "-1" @@ -1813,16 +2419,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1833,16 +2439,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11947" ], "x-ms-request-id": [ - "605113e0-239e-4296-9c9a-79e1f40065a7" + "defe1857-1087-4a3c-b522-aed6f9a64c62" ], "x-ms-correlation-request-id": [ - "605113e0-239e-4296-9c9a-79e1f40065a7" + "defe1857-1087-4a3c-b522-aed6f9a64c62" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090314Z:605113e0-239e-4296-9c9a-79e1f40065a7" + "KOREASOUTH:20200810T064348Z:defe1857-1087-4a3c-b522-aed6f9a64c62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,7 +2457,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:03:13 GMT" + "Mon, 10 Aug 2020 06:43:47 GMT" ], "Expires": [ "-1" @@ -1864,16 +2470,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzODctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek9EY3RWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzUxNjAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpVeE5qQXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28516.03", + "FxVersion/4.6.29017.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" ] }, "ResponseHeaders": { @@ -1884,16 +2490,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" + "11946" ], "x-ms-request-id": [ - "77f1d987-34b5-4217-8acd-f634a3be2d2e" + "1f777cb0-3a39-4832-9bb8-e3c8db5b81a9" ], "x-ms-correlation-request-id": [ - "77f1d987-34b5-4217-8acd-f634a3be2d2e" + "1f777cb0-3a39-4832-9bb8-e3c8db5b81a9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200331T090314Z:77f1d987-34b5-4217-8acd-f634a3be2d2e" + "KOREASOUTH:20200810T064348Z:1f777cb0-3a39-4832-9bb8-e3c8db5b81a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1902,7 +2508,7 @@ "nosniff" ], "Date": [ - "Tue, 31 Mar 2020 09:03:14 GMT" + "Mon, 10 Aug 2020 06:43:47 GMT" ], "Expires": [ "-1" @@ -1917,10 +2523,10 @@ ], "Names": { "Test-ListVaults": [ - "ps6387", - "ps168", - "ps8289", - "ps7579" + "ps5160", + "ps1685", + "ps7285", + "ps8249" ] }, "Variables": { diff --git a/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.ManagedHsmManagementTests/TestManagedHsmCRUD.json b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.ManagedHsmManagementTests/TestManagedHsmCRUD.json new file mode 100644 index 000000000000..47c2316257d1 --- /dev/null +++ b/src/KeyVault/KeyVault.Test/SessionRecords/Microsoft.Azure.Commands.KeyVault.Test.ScenarioTests.ManagedHsmManagementTests/TestManagedHsmCRUD.json @@ -0,0 +1,3837 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "044ea8f4-dfc5-4f67-9e25-2890762932b1" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "58b88c94-6f89-4a68-9026-23eba4a6986b" + ], + "x-ms-correlation-request-id": [ + "58b88c94-6f89-4a68-9026-23eba4a6986b" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135447Z:58b88c94-6f89-4a68-9026-23eba4a6986b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 13:54:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "10938" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"authorization\": {\r\n \"applicationId\": \"3b990c8b-9607-4c2a-8b04-1d41985facca\"\r\n },\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-01-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"tags\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"calculateTemplateHash\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-10-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Australia Central\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-08-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2020-06-01\",\r\n \"2019-09-01\",\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-05-01\",\r\n \"2019-04-01\",\r\n \"2019-03-01\",\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ],\r\n \"capabilities\": \"SupportsExtension\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ],\r\n \"capabilities\": \"None\"\r\n },\r\n {\r\n \"resourceType\": \"deploymentScripts/logs\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deploymentScriptOperationResults\",\r\n \"locations\": [\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Australia East\",\r\n \"Brazil South\",\r\n \"Canada Central\",\r\n \"East US 2\",\r\n \"East US\",\r\n \"Central US\",\r\n \"North Central US\",\r\n \"UK South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"Japan East\",\r\n \"Korea Central\",\r\n \"North Europe\",\r\n \"West Central US\",\r\n \"West Europe\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"South Central US\",\r\n \"Canada East\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-10-01-preview\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Byb3ZpZGVycy9NaWNyb3NvZnQuS2V5VmF1bHQ/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5cba9702-a619-4d5e-ba1e-90ac2dcd3221" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "e137593e-d00c-4d5f-9e59-205fb64f491a" + ], + "x-ms-correlation-request-id": [ + "e137593e-d00c-4d5f-9e59-205fb64f491a" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135448Z:e137593e-d00c-4d5f-9e59-205fb64f491a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 13:54:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "7541" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/providers/Microsoft.KeyVault\",\r\n \"namespace\": \"Microsoft.KeyVault\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"roleDefinitionId\": \"1cf9858a-28a2-4228-abba-94e606305b95\"\r\n },\r\n {\r\n \"applicationId\": \"589d5083-6f11-4d30-a62a-a4b316a14abf\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\",\r\n \"2014-12-19-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n },\r\n {\r\n \"resourceType\": \"vaults/secrets\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/accessPolicies\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\",\r\n \"2015-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedVaults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"North Central US\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Central US EUAP\",\r\n \"East US 2 EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/operationResults\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\",\r\n \"2016-10-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"vaults/eventGridFilters\",\r\n \"locations\": [\r\n \"North Central US\",\r\n \"East US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"South Central US\",\r\n \"West US\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"Central India\",\r\n \"South India\",\r\n \"West India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"West Central US\",\r\n \"West US 2\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"South Africa North\",\r\n \"South Africa West\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"Brazil Southeast\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-09-01\",\r\n \"2018-02-14-preview\",\r\n \"2018-02-14\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"managedHSMs\",\r\n \"locations\": [\r\n \"Central US EUAP\",\r\n \"East US 2\"\r\n ],\r\n \"apiVersions\": [\r\n \"2020-04-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove\"\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps1804?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMTgwND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6a2f7c24-d4fd-43d1-a2f1-188dd8693615" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-request-id": [ + "96ce579b-d4f6-4eb3-abd1-3b73960de7f9" + ], + "x-ms-correlation-request-id": [ + "96ce579b-d4f6-4eb3-abd1-3b73960de7f9" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135450Z:96ce579b-d4f6-4eb3-abd1-3b73960de7f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 13:54:49 GMT" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804\",\r\n \"name\": \"ps1804\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "286b7290-3d55-48a6-ab10-2f081e2478f4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "c11293c2-3a64-4f79-86cf-f76e2c49516a" + ], + "x-ms-correlation-request-id": [ + "c11293c2-3a64-4f79-86cf-f76e2c49516a" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135450Z:c11293c2-3a64-4f79-86cf-f76e2c49516a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 13:54:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "271" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps6584/providers/Microsoft.KeyVault/managedHSMs/ps2629\",\r\n \"name\": \"ps2629\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"sku\": {\r\n \"name\": \"Standard_B1\",\r\n \"family\": \"B\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2FmanagedHSMs'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRm1hbmFnZWRIU01zJyZhcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d8d87603-d4b5-4dec-88e4-63823e415b79" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "a2fdef25-b365-4199-85a6-e210bf6f9b13" + ], + "x-ms-correlation-request-id": [ + "a2fdef25-b365-4199-85a6-e210bf6f9b13" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141652Z:a2fdef25-b365-4199-85a6-e210bf6f9b13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:16:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "271" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"sku\": {\r\n \"name\": \"Standard_B1\",\r\n \"family\": \"B\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {}\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"hsmPoolUri\": \"\",\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90\r\n },\r\n \"location\": \"East US 2\",\r\n \"sku\": {\r\n \"name\": \"Standard_B1\",\r\n \"family\": \"B\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "392444bc-d633-4c0c-9860-361d4da0fa28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "355" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "033b0d1a-2c29-4aea-853f-d3e80fa27ffa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "699b6ec8-82fc-4319-80aa-6b68a4e5d25c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135459Z:699b6ec8-82fc-4319-80aa-6b68a4e5d25c" + ], + "Date": [ + "Fri, 07 Aug 2020 13:54:59 GMT" + ], + "Content-Length": [ + "658" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "f7eeb16c-079c-4a64-b7f9-adea45a20450" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "1cf89228-c4a9-46c0-800c-5ac29ddedc8d" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135530Z:1cf89228-c4a9-46c0-800c-5ac29ddedc8d" + ], + "Date": [ + "Fri, 07 Aug 2020 13:55:29 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "0b018bc7-28aa-4f57-a434-4da910fe0b25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "2e3a1df2-013b-4fd4-9dac-e24e994b546c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135600Z:2e3a1df2-013b-4fd4-9dac-e24e994b546c" + ], + "Date": [ + "Fri, 07 Aug 2020 13:55:59 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "a1a2c434-ebdf-4987-a70a-26acf5548d6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "e010bbd6-52bd-4a6d-afc1-7d549b0fea49" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135631Z:e010bbd6-52bd-4a6d-afc1-7d549b0fea49" + ], + "Date": [ + "Fri, 07 Aug 2020 13:56:30 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "dc7374c1-bd12-4863-8ad7-f37fc88fedd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "61afc518-9221-4ac1-b2e8-7c85b910d9ee" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135701Z:61afc518-9221-4ac1-b2e8-7c85b910d9ee" + ], + "Date": [ + "Fri, 07 Aug 2020 13:57:00 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "8dc4f693-59ab-43fe-ace9-875d265e6616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "4b116059-fba5-4799-ae3d-2c121661b311" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135731Z:4b116059-fba5-4799-ae3d-2c121661b311" + ], + "Date": [ + "Fri, 07 Aug 2020 13:57:31 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "d3c158a6-d26e-435c-9609-a7259cb42b2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "28f85dae-ca74-46fb-9096-b23c60ea8184" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135802Z:28f85dae-ca74-46fb-9096-b23c60ea8184" + ], + "Date": [ + "Fri, 07 Aug 2020 13:58:02 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "ea9e9a12-3052-447f-a7ec-fadaacf27bdf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "a15626e8-0ec4-43c2-939c-c187ba4eeb6c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135832Z:a15626e8-0ec4-43c2-939c-c187ba4eeb6c" + ], + "Date": [ + "Fri, 07 Aug 2020 13:58:32 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "74a51b3f-84fa-4937-b98f-0c4420dfc0a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "1cce5e51-ebfb-4c0d-8cef-1e1e5614c8c1" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135903Z:1cce5e51-ebfb-4c0d-8cef-1e1e5614c8c1" + ], + "Date": [ + "Fri, 07 Aug 2020 13:59:02 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "184a6f3e-5c2c-4071-90f8-f8678467ff1a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "7dd160c5-521c-484c-ab8e-952339c52a81" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T135933Z:7dd160c5-521c-484c-ab8e-952339c52a81" + ], + "Date": [ + "Fri, 07 Aug 2020 13:59:33 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "f8d3f02f-a693-4240-bab2-d1295267837a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "9078712b-3b57-4fd3-81c6-725178691244" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140004Z:9078712b-3b57-4fd3-81c6-725178691244" + ], + "Date": [ + "Fri, 07 Aug 2020 14:00:03 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "76d56f80-c0a6-4e87-a82c-ec409c46f422" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "65086d45-d20b-48bc-b095-7f0cb1f5d70f" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140034Z:65086d45-d20b-48bc-b095-7f0cb1f5d70f" + ], + "Date": [ + "Fri, 07 Aug 2020 14:00:33 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "eb25868e-7197-4b1e-b618-e270b962cbe1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "60b6bbae-6b62-4b28-891f-52c9435b9ef6" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140105Z:60b6bbae-6b62-4b28-891f-52c9435b9ef6" + ], + "Date": [ + "Fri, 07 Aug 2020 14:01:05 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "46ca2e67-f4c9-4036-8208-dbc5fa3930d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "234b2d0b-93d0-4769-ab52-944bddf6644c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140136Z:234b2d0b-93d0-4769-ab52-944bddf6644c" + ], + "Date": [ + "Fri, 07 Aug 2020 14:01:36 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "0bf36b60-7590-4875-a8f4-5473b8ea192a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "0315aa9d-97ce-4495-8db3-84e2974990f2" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140207Z:0315aa9d-97ce-4495-8db3-84e2974990f2" + ], + "Date": [ + "Fri, 07 Aug 2020 14:02:06 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "2ea4bba0-f70f-4a41-831b-ba0c0462de77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "91260ac5-10f1-410e-8fee-3730d17d942d" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140237Z:91260ac5-10f1-410e-8fee-3730d17d942d" + ], + "Date": [ + "Fri, 07 Aug 2020 14:02:37 GMT" + ], + "Content-Length": [ + "659" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Allocating hardware...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "de5e8914-2da8-4ff1-95fe-a56f8519c1ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "79e8024b-12eb-43b0-a238-198bbc11b572" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140308Z:79e8024b-12eb-43b0-a238-198bbc11b572" + ], + "Date": [ + "Fri, 07 Aug 2020 14:03:07 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "fdb686bc-e132-41a5-b92e-dbe7320c812a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "98b87b94-64ee-4cc5-87e4-e19a15b60d5a" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140338Z:98b87b94-64ee-4cc5-87e4-e19a15b60d5a" + ], + "Date": [ + "Fri, 07 Aug 2020 14:03:38 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "62dbf7d3-d8b7-47d4-a07d-e857ca262048" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "d9fc32ff-0854-49e4-af8c-5cc2e39daa97" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140408Z:d9fc32ff-0854-49e4-af8c-5cc2e39daa97" + ], + "Date": [ + "Fri, 07 Aug 2020 14:04:08 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "b7048b45-0489-4f75-b58f-6985587d07cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "70f4ae33-7128-4292-b7d4-b4893bf30c1f" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140439Z:70f4ae33-7128-4292-b7d4-b4893bf30c1f" + ], + "Date": [ + "Fri, 07 Aug 2020 14:04:38 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "7ba1e825-2e48-45b9-8ee1-d5221a6a4501" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "f94f61c3-98ff-4580-b9cc-a90fda396acb" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140509Z:f94f61c3-98ff-4580-b9cc-a90fda396acb" + ], + "Date": [ + "Fri, 07 Aug 2020 14:05:09 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "734bd07f-350e-48b8-8a61-28acaa06ab72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "88e8f139-e7d4-4f52-a49d-e481abf84a7c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140540Z:88e8f139-e7d4-4f52-a49d-e481abf84a7c" + ], + "Date": [ + "Fri, 07 Aug 2020 14:05:39 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "d06afd63-21f1-407e-bef1-6b9ec52e8930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "4f42e450-f4a3-400f-a9f5-bbceeb81cf45" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140610Z:4f42e450-f4a3-400f-a9f5-bbceeb81cf45" + ], + "Date": [ + "Fri, 07 Aug 2020 14:06:10 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "472d0fe0-ba39-40e7-a841-449eda09f444" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "6ad83cf3-72b3-483b-b2e0-278111a55527" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140641Z:6ad83cf3-72b3-483b-b2e0-278111a55527" + ], + "Date": [ + "Fri, 07 Aug 2020 14:06:40 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "cab9e77f-c7c5-4c84-b379-35554989cf79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "b24c590e-a030-407b-a655-014dacf5ca43" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140711Z:b24c590e-a030-407b-a655-014dacf5ca43" + ], + "Date": [ + "Fri, 07 Aug 2020 14:07:10 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "2c84d85e-5c15-47e8-b211-a1014908b0c3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "bfa1f412-0ae6-44bf-a82d-554b5c1e6569" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140741Z:bfa1f412-0ae6-44bf-a82d-554b5c1e6569" + ], + "Date": [ + "Fri, 07 Aug 2020 14:07:41 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "91d06774-0154-45ad-89d1-4a57f983b69f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "25eb8e8c-670a-4162-8989-604aba304a69" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140813Z:25eb8e8c-670a-4162-8989-604aba304a69" + ], + "Date": [ + "Fri, 07 Aug 2020 14:08:12 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "024e1031-5314-4476-bf0f-f7fea5276f35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "ae626b6e-9e40-442f-bf6f-fb2acac5e40f" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140844Z:ae626b6e-9e40-442f-bf6f-fb2acac5e40f" + ], + "Date": [ + "Fri, 07 Aug 2020 14:08:44 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "351f8095-4166-4a1c-9609-fbe52dcd04d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "bae33368-64d1-4883-b0f8-75184df6aa91" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140914Z:bae33368-64d1-4883-b0f8-75184df6aa91" + ], + "Date": [ + "Fri, 07 Aug 2020 14:09:14 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "e7485a4f-a92e-46e8-a3fc-1a1e3b00af5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "d46dd322-2141-477e-8555-a43dfbe62eb0" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T140944Z:d46dd322-2141-477e-8555-a43dfbe62eb0" + ], + "Date": [ + "Fri, 07 Aug 2020 14:09:44 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "69b3a8af-d9cc-4074-86e3-8f87f1555c37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "29d14fb0-80da-491b-8dc1-5c951909b714" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141015Z:29d14fb0-80da-491b-8dc1-5c951909b714" + ], + "Date": [ + "Fri, 07 Aug 2020 14:10:15 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "8eab2c43-1bb8-451d-9cd5-9ede76ebb3f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-correlation-request-id": [ + "1999b0ee-b45b-44bb-a688-9f331301aa11" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141045Z:1999b0ee-b45b-44bb-a688-9f331301aa11" + ], + "Date": [ + "Fri, 07 Aug 2020 14:10:45 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "a74c8fb6-32d9-4552-81d0-6b32c14f8055" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "b508db8b-26f0-4cc2-b5dd-2d639de3c937" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141116Z:b508db8b-26f0-4cc2-b5dd-2d639de3c937" + ], + "Date": [ + "Fri, 07 Aug 2020 14:11:15 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "6f2ff0e3-d14d-4258-a635-75a7114c3f18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "e4324c91-5bee-45f0-b3d2-eb44590bd247" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141146Z:e4324c91-5bee-45f0-b3d2-eb44590bd247" + ], + "Date": [ + "Fri, 07 Aug 2020 14:11:46 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "137c2116-1e28-4006-8b84-d6e6c8073daf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "daae4303-3581-42ed-bc69-bbf013d15bcf" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141217Z:daae4303-3581-42ed-bc69-bbf013d15bcf" + ], + "Date": [ + "Fri, 07 Aug 2020 14:12:16 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "2f1ebf8f-fc38-4b30-989f-aec033fc7ec4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "fdbf906c-55d5-4e15-95ed-f4fb84b139cd" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141247Z:fdbf906c-55d5-4e15-95ed-f4fb84b139cd" + ], + "Date": [ + "Fri, 07 Aug 2020 14:12:46 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "a63d6636-0f49-462f-801c-5fa5df1b71d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "08e6aac9-9201-4029-9bdb-2c241688a392" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141318Z:08e6aac9-9201-4029-9bdb-2c241688a392" + ], + "Date": [ + "Fri, 07 Aug 2020 14:13:17 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "b8bcb7c4-6b70-4d2f-97a0-2a9c494f901f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "db5fbffe-9461-4646-9dec-925ae0d78e92" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141348Z:db5fbffe-9461-4646-9dec-925ae0d78e92" + ], + "Date": [ + "Fri, 07 Aug 2020 14:13:47 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "b7d9f1ab-cde4-4df6-8639-d99c58ea1cc3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-correlation-request-id": [ + "2204d9ee-3755-4594-9eee-7e950def33c5" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141419Z:2204d9ee-3755-4594-9eee-7e950def33c5" + ], + "Date": [ + "Fri, 07 Aug 2020 14:14:18 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "6f4baa0a-a187-4485-a89c-3bf5cfd52061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "14ecf256-3886-4a51-9180-8231254baf2e" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141450Z:14ecf256-3886-4a51-9180-8231254baf2e" + ], + "Date": [ + "Fri, 07 Aug 2020 14:14:49 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "14f68469-cdd0-4073-88f0-eee8ab508f80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "07aeb338-2111-4427-9e10-e28f43053f72" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141520Z:07aeb338-2111-4427-9e10-e28f43053f72" + ], + "Date": [ + "Fri, 07 Aug 2020 14:15:20 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "adcd6278-23d3-4c5b-b81d-a1e2b34767e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "c19ae55d-1049-4aa1-80c3-618a53383531" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141551Z:c19ae55d-1049-4aa1-80c3-618a53383531" + ], + "Date": [ + "Fri, 07 Aug 2020 14:15:50 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "a0637d95-d8ff-4961-b59a-dd266f2a61d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "48ae4f11-c96a-4c7d-8b19-9c719297e6aa" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141621Z:48ae4f11-c96a-4c7d-8b19-9c719297e6aa" + ], + "Date": [ + "Fri, 07 Aug 2020 14:16:21 GMT" + ], + "Content-Length": [ + "656" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Provisioning\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "1d3ff95f-d3c0-4617-ba92-1d380c823002" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "1a569649-d193-48dd-80fb-003f2f6d80a1" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141652Z:1a569649-d193-48dd-80fb-003f2f6d80a1" + ], + "Date": [ + "Fri, 07 Aug 2020 14:16:51 GMT" + ], + "Content-Length": [ + "653" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "70841a11-512c-4c3f-9cba-2f246f2f76d7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "b2860ce5-309c-4ea6-aa48-62df3f4f5c53" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "9bac0148-dd00-4a66-8f85-d9cb1f132481" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141653Z:9bac0148-dd00-4a66-8f85-d9cb1f132481" + ], + "Date": [ + "Fri, 07 Aug 2020 14:16:52 GMT" + ], + "Content-Length": [ + "653" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"family\": \"B\",\r\n \"name\": \"Standard_B1\"\r\n },\r\n \"id\": \"/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411\",\r\n \"name\": \"ps7411\",\r\n \"type\": \"Microsoft.KeyVault/managedHSMs\",\r\n \"location\": \"East US 2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"securityDomainId\": \"00000000-0000-0000-0000-000000000000\",\r\n \"hsmUri\": \"https://ps7411.managedhsm.azure.net/\",\r\n \"initialAdminObjectIds\": [\r\n \"c1be1392-39b8-4521-aafc-819a47008545\"\r\n ],\r\n \"enableSoftDelete\": true,\r\n \"softDeleteRetentionInDays\": 90,\r\n \"provisioningState\": \"Succeeded\",\r\n \"statusMessage\": \"Resource creation in progress. Starting service...\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a7e5d9f6-ff5f-42f1-9d8e-14f9cd3c1b49" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "a087ba8b-7a6a-441e-aa4c-f268df5dd686" + ], + "x-ms-correlation-request-id": [ + "a087ba8b-7a6a-441e-aa4c-f268df5dd686" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141701Z:a087ba8b-7a6a-441e-aa4c-f268df5dd686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "215" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/managedHSMs/ps7411' under resource group 'ps1804' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resources?$filter=resourceType%20eq%20'Microsoft.KeyVault%2Fvaults'&api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlcz8kZmlsdGVyPXJlc291cmNlVHlwZSUyMGVxJTIwJ01pY3Jvc29mdC5LZXlWYXVsdCUyRnZhdWx0cycmYXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e23863d1-3dd0-47f9-8ea9-4a26521a4ee7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "a760e6b1-6604-432b-983d-f7b0b4a84a1c" + ], + "x-ms-correlation-request-id": [ + "a760e6b1-6604-432b-983d-f7b0b4a84a1c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141652Z:a760e6b1-6604-432b-983d-f7b0b4a84a1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:16:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/managedHSMs/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L21hbmFnZWRIU01zL3BzNzQxMT9hcGktdmVyc2lvbj0yMDIwLTA0LTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b29371e-6f2b-4768-a649-38d6fd88f2fd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-keyvault-service-version": [ + "1.1.16.0" + ], + "x-ms-request-id": [ + "9730fc41-1eca-4136-bb43-abee6355f065" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "d04ea25d-b82c-4f3c-8c92-89334ea85936" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141700Z:d04ea25d-b82c-4f3c-8c92-89334ea85936" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:00 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourceGroups/ps1804/providers/Microsoft.KeyVault/vaults/ps7411?api-version=2020-04-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlR3JvdXBzL3BzMTgwNC9wcm92aWRlcnMvTWljcm9zb2Z0LktleVZhdWx0L3ZhdWx0cy9wczc0MTE/YXBpLXZlcnNpb249MjAyMC0wNC0wMS1wcmV2aWV3", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "086eb3ad-45a1-47af-b845-e9608724e4df" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.KeyVault.KeyVaultManagementClient/3.0.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "65595357-72e0-4a9f-8e04-b07d8dac10be" + ], + "x-ms-correlation-request-id": [ + "65595357-72e0-4a9f-8e04-b07d8dac10be" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141700Z:65595357-72e0-4a9f-8e04-b07d8dac10be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "210" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.KeyVault/vaults/ps7411' under resource group 'ps1804' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/resourcegroups/ps1804?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL3Jlc291cmNlZ3JvdXBzL3BzMTgwND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3be8e49d-f933-486e-b370-8fcc1c9b0d9c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "0b90d2a1-ac40-4bc7-b645-648658d73fb9" + ], + "x-ms-correlation-request-id": [ + "0b90d2a1-ac40-4bc7-b645-648658d73fb9" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141704Z:0b90d2a1-ac40-4bc7-b645-648658d73fb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "1747ecf8-f48f-4d70-9dfc-330b1ad54883" + ], + "x-ms-correlation-request-id": [ + "1747ecf8-f48f-4d70-9dfc-330b1ad54883" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141719Z:1747ecf8-f48f-4d70-9dfc-330b1ad54883" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "1c79d2e2-c6ba-4b9c-9f8e-aff4b8e4556f" + ], + "x-ms-correlation-request-id": [ + "1c79d2e2-c6ba-4b9c-9f8e-aff4b8e4556f" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141735Z:1c79d2e2-c6ba-4b9c-9f8e-aff4b8e4556f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "03b607e7-3dd6-4e37-94a5-03514ffe601c" + ], + "x-ms-correlation-request-id": [ + "03b607e7-3dd6-4e37-94a5-03514ffe601c" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141750Z:03b607e7-3dd6-4e37-94a5-03514ffe601c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/c9cbd920-c00c-427c-852b-8aaf38badaeb/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE4MDQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYzljYmQ5MjAtYzAwYy00MjdjLTg1MmItOGFhZjM4YmFkYWViL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFNE1EUXRWMFZUVkZWVElpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE1pZlE/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29017.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.21" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "069b1288-92b8-40fc-8e18-e3b3349e50af" + ], + "x-ms-correlation-request-id": [ + "069b1288-92b8-40fc-8e18-e3b3349e50af" + ], + "x-ms-routing-request-id": [ + "KOREASOUTH:20200807T141751Z:069b1288-92b8-40fc-8e18-e3b3349e50af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 07 Aug 2020 14:17:51 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ManagedHsmCRUD": [ + "ps1804", + "ps7411", + "ps2420", + "ps2850" + ] + }, + "Variables": { + "SubscriptionId": "c9cbd920-c00c-427c-852b-8aaf38badaeb" + } +} \ No newline at end of file diff --git a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs index a14590a2d745..667bb39cf69b 100644 --- a/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs +++ b/src/KeyVault/KeyVault/Commands/NewAzureKeyVault.cs @@ -29,7 +29,7 @@ namespace Microsoft.Azure.Commands.KeyVault /// /// Create a new key vault. /// - [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVault", SupportsShouldProcess = true)] + [Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "KeyVault", DefaultParameterSetName = KeyVaultParameterSet, SupportsShouldProcess = true)] [OutputType(typeof(PSKeyVault))] public class NewAzureKeyVault : KeyVaultManagementCmdletBase { diff --git a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs index 67fc13dfef90..da1002989b13 100644 --- a/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs +++ b/src/KeyVault/KeyVault/Commands/UpdateAzureKeyVault.cs @@ -50,37 +50,16 @@ public class UpdateTopLevelResourceCommand : KeyVaultManagementCmdletBase [ValidateNotNullOrEmpty] public string ResourceId { get; set; } - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByNameParameterSet, - HelpMessage = "Enable the soft-delete functionality for this key vault. Once enabled it cannot be disabled.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByInputObjectParameterSet, - HelpMessage = "Enable the soft-delete functionality for this key vault. Once enabled it cannot be disabled.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByResourceIdParameterSet, + [Parameter(Mandatory = false, HelpMessage = "Enable the soft-delete functionality for this key vault. Once enabled it cannot be disabled.")] public SwitchParameter EnableSoftDelete { get; set; } [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByNameParameterSet, - HelpMessage = "Enable the purge protection functionality for this key vault. Once enabled it cannot be disabled. It requires soft-delete to be turned on.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByInputObjectParameterSet, - HelpMessage = "Enable the purge protection functionality for this key vault. Once enabled it cannot be disabled. It requires soft-delete to be turned on.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByResourceIdParameterSet, HelpMessage = "Enable the purge protection functionality for this key vault. Once enabled it cannot be disabled. It requires soft-delete to be turned on.")] public SwitchParameter EnablePurgeProtection { get; set; } [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByNameParameterSet, - HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByInputObjectParameterSet, - HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")] - [Parameter(Mandatory = false, - ParameterSetName = UpdateKeyVault + ByResourceIdParameterSet, - HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")] + HelpMessage = "Specifies how long deleted resources are retained, and how long until a vault or an object in the deleted state can be purged. The default is " + Constants.DefaultSoftDeleteRetentionDaysString + " days.")] [ValidateRange(Constants.MinSoftDeleteRetentionDays, Constants.MaxSoftDeleteRetentionDays)] [ValidateNotNullOrEmpty] public int SoftDeleteRetentionInDays { get; set; } diff --git a/src/KeyVault/KeyVault/KeyVault.csproj b/src/KeyVault/KeyVault/KeyVault.csproj index d3d0cf9205ba..4c448fe7d6c5 100644 --- a/src/KeyVault/KeyVault/KeyVault.csproj +++ b/src/KeyVault/KeyVault/KeyVault.csproj @@ -14,7 +14,7 @@ - + diff --git a/src/KeyVault/KeyVault/Models/PSManagedHsm.cs b/src/KeyVault/KeyVault/Models/PSManagedHsm.cs index 7d153a0eaf03..04bf920c2963 100644 --- a/src/KeyVault/KeyVault/Models/PSManagedHsm.cs +++ b/src/KeyVault/KeyVault/Models/PSManagedHsm.cs @@ -8,6 +8,7 @@ using Microsoft.Azure.Management.KeyVault.Models; using Microsoft.Azure.Commands.ResourceManager.Common.Tags; using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using System.Linq; namespace Microsoft.Azure.Commands.KeyVault.Models { @@ -32,7 +33,7 @@ public PSManagedHsm(ManagedHsm managedHsm, ActiveDirectoryClient adClient) TenantName = ModelExtensions.GetDisplayNameForTenant(TenantId, adClient); SecurityDomainId = managedHsm.Properties.SecurityDomainId.Value; SecurityDomainName = ModelExtensions.GetDisplayNameForTenant(SecurityDomainId, adClient); - InitialAdminObjectIds = managedHsm.Properties.InitialAdminObjectIds; + InitialAdminObjectIds = managedHsm.Properties.InitialAdminObjectIds.ToArray(); HsmPoolUri = managedHsm.Properties.HsmPoolUri; EnablePurgeProtection = managedHsm.Properties.EnablePurgeProtection; EnableSoftDelete = managedHsm.Properties.EnableSoftDelete; @@ -47,7 +48,7 @@ public PSManagedHsm(ManagedHsm managedHsm, ActiveDirectoryClient adClient) public string TenantName { get; private set; } public Guid SecurityDomainId { get; private set; } public string SecurityDomainName { get; private set; } - public IList InitialAdminObjectIds { get; private set; } + public string[] InitialAdminObjectIds { get; private set; } public string HsmPoolUri { get; private set; } public bool? EnableSoftDelete { get; private set; } public int? SoftDeleteRetentionInDays { get; private set; } diff --git a/src/KeyVault/KeyVault/Models/VaultManagementClient.cs b/src/KeyVault/KeyVault/Models/VaultManagementClient.cs index 9cac614ad63f..8eceb13278e6 100644 --- a/src/KeyVault/KeyVault/Models/VaultManagementClient.cs +++ b/src/KeyVault/KeyVault/Models/VaultManagementClient.cs @@ -89,7 +89,7 @@ public PSKeyVault CreateNewVault(VaultCreationParameters parameters, ActiveDirec throw new ArgumentException("parameters.TenantId"); if (!string.IsNullOrWhiteSpace(parameters.SkuName)) { - if (Enum.TryParse(parameters.SkuName, out SkuName skuName)) + if (Enum.TryParse(parameters.SkuName, true, out SkuName skuName)) { properties.Sku = new Sku(skuName); } @@ -380,7 +380,7 @@ public PSManagedHsm CreateNewManagedHsm(VaultCreationParameters parameters, Acti throw new ArgumentException("parameters.TenantId"); if (!string.IsNullOrWhiteSpace(parameters.SkuName)) { - if (Enum.TryParse(parameters.SkuName, out ManagedHsmSkuName skuName)) + if (Enum.TryParse(parameters.SkuName, true, out ManagedHsmSkuName skuName)) { managedHsmSku.Name = skuName; } @@ -446,7 +446,7 @@ public PSManagedHsm GetManagedHsm(string managedHsmName, string resourceGroupNam return new PSManagedHsm(response, adClient); } - catch (CloudException ce) + catch (ManagedHsmErrorException ce) { if (ce.Response.StatusCode == HttpStatusCode.NotFound) { diff --git a/src/KeyVault/KeyVault/help/New-AzKeyVault.md b/src/KeyVault/KeyVault/help/New-AzKeyVault.md index 8637e145efea..6b7c3b9ffc84 100644 --- a/src/KeyVault/KeyVault/help/New-AzKeyVault.md +++ b/src/KeyVault/KeyVault/help/New-AzKeyVault.md @@ -259,7 +259,7 @@ Accept wildcard characters: False ``` ### -Hsm -Specifies the type of this vault as MHSM. +Specifies the type of this vault as managed hsm. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/src/KeyVault/KeyVault/help/Remove-AzKeyVault.md b/src/KeyVault/KeyVault/help/Remove-AzKeyVault.md index cb4129ed21cc..a6e64beac041 100644 --- a/src/KeyVault/KeyVault/help/Remove-AzKeyVault.md +++ b/src/KeyVault/KeyVault/help/Remove-AzKeyVault.md @@ -132,7 +132,7 @@ Accept wildcard characters: False ``` ### -Hsm -Specifies the type of vault as MHSM. +Specifies the type of vault as managed hsm. ```yaml Type: System.Management.Automation.SwitchParameter diff --git a/src/Sql/Sql.Test/Sql.Test.csproj b/src/Sql/Sql.Test/Sql.Test.csproj index d0d7ca5ea11a..dae97740a584 100644 --- a/src/Sql/Sql.Test/Sql.Test.csproj +++ b/src/Sql/Sql.Test/Sql.Test.csproj @@ -17,7 +17,7 @@ - + diff --git a/tools/LocalFeed/Microsoft.Azure.Management.KeyVault.3.1.0-preview.1.nupkg b/tools/LocalFeed/Microsoft.Azure.Management.KeyVault.3.1.0-preview.1.nupkg new file mode 100644 index 000000000000..4f7879526d61 Binary files /dev/null and b/tools/LocalFeed/Microsoft.Azure.Management.KeyVault.3.1.0-preview.1.nupkg differ diff --git a/tools/LocalFeed/microsoft.azure.management.keyvault.3.0.1.nupkg b/tools/LocalFeed/microsoft.azure.management.keyvault.3.0.1.nupkg deleted file mode 100644 index 68ee0f7bc323..000000000000 Binary files a/tools/LocalFeed/microsoft.azure.management.keyvault.3.0.1.nupkg and /dev/null differ diff --git a/tools/StaticAnalysis/Exceptions/Az.KeyVault/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.KeyVault/BreakingChangeIssues.csv new file mode 100644 index 000000000000..2730f147b529 --- /dev/null +++ b/tools/StaticAnalysis/Exceptions/Az.KeyVault/BreakingChangeIssues.csv @@ -0,0 +1,4 @@ +"AssemblyFileName","ClassName","Target","Severity","ProblemId","Description","Remediation" +"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.NewAzureKeyVault","New-AzKeyVault","0","2020","The cmdlet 'New-AzKeyVault' no longer supports the type 'Microsoft.Azure.Management.KeyVault.Models.SkuName' for parameter 'Sku'.","Change the type for parameter 'Sku' back to 'Microsoft.Azure.Management.KeyVault.Models.SkuName'." +"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.RemoveAzureKeyVault","Remove-AzKeyVault","0","2020","The cmdlet 'Remove-AzKeyVault' no longer supports the type 'Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault' for parameter 'InputObject'.","Change the type for parameter 'InputObject' back to 'Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault'." +"Microsoft.Azure.PowerShell.Cmdlets.KeyVault.dll","Microsoft.Azure.Commands.KeyVault.UpdateTopLevelResourceCommand","Update-AzKeyVault","0","2020","The cmdlet 'Update-AzKeyVault' no longer supports the type 'Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault' for parameter 'InputObject'.","Change the type for parameter 'InputObject' back to 'Microsoft.Azure.Commands.KeyVault.Models.PSKeyVault'."