From 38a14708fc7766d863fa8cea924556cd85b4f2a7 Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Wed, 10 Feb 2021 15:41:12 -0500 Subject: [PATCH 1/3] Fixed issues with TemplateSpec deployments in New-AzTenantDeployment and New-AzManagementGroupDeployment --- ...NewAzureManagementGroupDeploymentCmdlet.cs | 2 + .../NewAzureTenantDeploymentCmdlet.cs | 2 + .../ScenarioTests/DeploymentTests.cs | 24 + .../ScenarioTests/DeploymentTests.ps1 | 105 + .../TestNewMGDeploymentTemplateSpec.json | 1795 +++ ...NewSubscriptionDeploymentTemplateSpec.json | 12004 ++++++++++++++++ .../TestNewTenantDeploymentTemplateSpec.json | 1708 +++ .../Resources.Test/simpleTemplate.json | 33 + .../Resources.Test/simpleTemplateParams.json | 8 + src/Resources/Resources/ChangeLog.md | 1 + 10 files changed, 15682 insertions(+) create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewTenantDeploymentTemplateSpec.json create mode 100644 src/Resources/Resources.Test/simpleTemplate.json create mode 100644 src/Resources/Resources.Test/simpleTemplateParams.json diff --git a/src/Resources/ResourceManager/Implementation/Deployments/NewAzureManagementGroupDeploymentCmdlet.cs b/src/Resources/ResourceManager/Implementation/Deployments/NewAzureManagementGroupDeploymentCmdlet.cs index 11a87127adc0..69fd3620252c 100644 --- a/src/Resources/ResourceManager/Implementation/Deployments/NewAzureManagementGroupDeploymentCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Deployments/NewAzureManagementGroupDeploymentCmdlet.cs @@ -82,6 +82,7 @@ public class NewAzureManagementGroupDeploymentCmdlet : DeploymentCreateCmdlet QueryString = this.QueryString, TemplateFile = this.TemplateUri ?? this.TryResolvePath(this.TemplateFile), TemplateObject = this.TemplateObject, + TemplateSpecId = TemplateSpecId, TemplateParameterObject = this.GetTemplateParameterObject(this.TemplateParameterObject), ParameterUri = this.TemplateParameterUri, DeploymentDebugLogLevel = this.GetDeploymentDebugLogLevel(this.DeploymentDebugLogLevel), @@ -94,6 +95,7 @@ public class NewAzureManagementGroupDeploymentCmdlet : DeploymentCreateCmdlet deploymentName: this.Name, location: this.Location, mode: DeploymentMode.Incremental, + templateSpecId: TemplateSpecId, queryString: this.QueryString, templateUri: this.TemplateUri ?? this.TryResolvePath(this.TemplateFile), templateObject: this.TemplateObject, diff --git a/src/Resources/ResourceManager/Implementation/Deployments/NewAzureTenantDeploymentCmdlet.cs b/src/Resources/ResourceManager/Implementation/Deployments/NewAzureTenantDeploymentCmdlet.cs index 14f37b042415..2d81166531e4 100644 --- a/src/Resources/ResourceManager/Implementation/Deployments/NewAzureTenantDeploymentCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/Deployments/NewAzureTenantDeploymentCmdlet.cs @@ -77,6 +77,7 @@ public class NewAzureTenantDeploymentCmdlet: DeploymentCreateCmdlet QueryString = this.QueryString, TemplateFile = this.TemplateUri ?? this.TryResolvePath(this.TemplateFile), TemplateObject = this.TemplateObject, + TemplateSpecId = this.TemplateSpecId, TemplateParameterObject = this.GetTemplateParameterObject(this.TemplateParameterObject), ParameterUri = this.TemplateParameterUri, DeploymentDebugLogLevel = GetDeploymentDebugLogLevel(this.DeploymentDebugLogLevel), @@ -91,6 +92,7 @@ public class NewAzureTenantDeploymentCmdlet: DeploymentCreateCmdlet queryString: this.QueryString, templateUri : TemplateUri ?? this.TryResolvePath(TemplateFile), templateObject : this.TemplateObject, + templateSpecId: TemplateSpecId, templateParametersUri : this.TemplateParameterUri, templateParametersObject : GetTemplateParameterObject(this.TemplateParameterObject), resultFormat : this.WhatIfResultFormat, diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 933953ed1585..5d5c492a302f 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -55,6 +55,30 @@ public void TestNewDeploymentTemplateSpec() TestRunner.RunTestScript("Test-NewDeploymentFromTemplateSpec"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.RunType, Category.CoreOnly)] + public void TestNewSubscriptionDeploymentTemplateSpec() + { + TestRunner.RunTestScript("Test-NewSubscriptionDeploymentFromTemplateSpec"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.RunType, Category.CoreOnly)] + public void TestNewMGDeploymentTemplateSpec() + { + TestRunner.RunTestScript("Test-NewMGDeploymentFromTemplateSpec"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.RunType, Category.CoreOnly)] + public void TestNewTenantDeploymentTemplateSpec() + { + TestRunner.RunTestScript("Test-NewTenantDeploymentFromTemplateSpec"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] public void TestTestResourceGroupDeploymentErrors() diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 14a8374ca862..3f7f3ce20704 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -146,6 +146,111 @@ function Test-NewDeploymentFromTemplateSpec } } +function Test-NewSubscriptionDeploymentFromTemplateSpec +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + $subId = (Get-AzContext).Subscription.SubscriptionId + + try + { + # Prepare our RG and basic template spec: + + New-AzResourceGroup -Name $rgname -Location $rglocation + + $sampleTemplateJson = Get-Content -Raw -Path "subscription_level_template.json" + $basicCreatedTemplateSpec = New-AzTemplateSpec -ResourceGroupName $rgname -Name $rname -Location $rgLocation -Version "v1" -TemplateJson $sampleTemplateJson + + $resourceId = $basicCreatedTemplateSpec.Id + "/versions/v1" + + #Create deployment + $deployment = New-AzSubscriptionDeployment -Name $rname -TemplateSpecId $resourceId -TemplateParameterFile "subscription_level_parameters.json" -Location $rglocation + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + + } + + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-NewMGDeploymentFromTemplateSpec +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $managementGroupId = "gokultest" + $rglocation = "West US 2" + $subId = (Get-AzContext).Subscription.SubscriptionId + + try + { + # Prepare our RG and basic template spec: + + New-AzResourceGroup -Name $rgname -Location $rglocation + + $sampleTemplateJson = Get-Content -Raw -Path "simpleTemplate.json" + $basicCreatedTemplateSpec = New-AzTemplateSpec -ResourceGroupName $rgname -Name $rname -Location $rgLocation -Version "v1" -TemplateJson $sampleTemplateJson + + $resourceId = $basicCreatedTemplateSpec.Id + "/versions/v1" + + #Create deployment + $deployment = New-AzManagementGroupDeployment -ManagementGroupId $managementGroupId -Name $rname -TemplateSpecId $resourceId -TemplateParameterFile "simpleTemplateParams.json" -Location $rglocation + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + + } + + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +function Test-NewTenantDeploymentFromTemplateSpec +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + $subId = (Get-AzContext).Subscription.SubscriptionId + + try + { + # Prepare our RG and basic template spec: + + New-AzResourceGroup -Name $rgname -Location $rglocation + + $sampleTemplateJson = Get-Content -Raw -Path "simpleTemplate.json" + $basicCreatedTemplateSpec = New-AzTemplateSpec -ResourceGroupName $rgname -Name $rname -Location $rgLocation -Version "v1" -TemplateJson $sampleTemplateJson + + $resourceId = $basicCreatedTemplateSpec.Id + "/versions/v1" + + #Create deployment + $deployment = New-AzTenantDeployment -Name $rname -TemplateSpecId $resourceId -TemplateParameterFile "simpleTemplateParams.json" -Location $rglocation + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + + } + + finally + { + # Cleanup + Clean-ResourceGroup $rgname + Remove-AzTenantDeployment -Name $rname + Clean-DeploymentAtTenant $rname + } +} + function Test-NewDeploymentFromTemplateObject { # Setup diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json new file mode 100644 index 000000000000..91bd2d110486 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json @@ -0,0 +1,1795 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05d22ffa-1c5d-41b6-b6c0-2d2f96009ece" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "08748819-ca35-42f4-b065-35b980a032d9" + ], + "x-ms-correlation-request-id": [ + "08748819-ca35-42f4-b065-35b980a032d9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192818Z:08748819-ca35-42f4-b065-35b980a032d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:17 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "9356201e-7a5e-4451-8128-ad2cc7f5278e" + ], + "x-ms-correlation-request-id": [ + "9356201e-7a5e-4451-8128-ad2cc7f5278e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192833Z:9356201e-7a5e-4451-8128-ad2cc7f5278e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:32 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "05d22ffa-1c5d-41b6-b6c0-2d2f96009ece" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "7d176259-d8fc-491f-ac70-c761ab8dd603" + ], + "x-ms-correlation-request-id": [ + "7d176259-d8fc-491f-ac70-c761ab8dd603" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192825Z:7d176259-d8fc-491f-ac70-c761ab8dd603" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:25 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482\",\r\n \"name\": \"ps7482\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be74d0bc-d6fd-4b4a-b861-014bf5571459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "63ca92b7-4247-4035-9cbd-4c719886c31e" + ], + "x-ms-correlation-request-id": [ + "63ca92b7-4247-4035-9cbd-4c719886c31e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192826Z:63ca92b7-4247-4035-9cbd-4c719886c31e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245/versions/v1' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be74d0bc-d6fd-4b4a-b861-014bf5571459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7caae0bf-a089-485d-8804-d0a6ca8c20da" + ], + "x-ms-correlation-request-id": [ + "7caae0bf-a089-485d-8804-d0a6ca8c20da" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192827Z:7caae0bf-a089-485d-8804-d0a6ca8c20da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245/versions/v1' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31d277fb-6d0b-4fc7-82ad-e3c65fc2a155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "fb49570f-c187-4208-86cd-0b8333c4249d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "3884a44e-d828-462c-a0e7-ae0d03765511" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192829Z:3884a44e-d828-462c-a0e7-ae0d03765511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:28 GMT" + ], + "Content-Length": [ + "1405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:28.3874775Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:28.3874775Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be74d0bc-d6fd-4b4a-b861-014bf5571459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4b751e8f-e5ce-42b0-af97-93230627667c" + ], + "x-ms-correlation-request-id": [ + "4b751e8f-e5ce-42b0-af97-93230627667c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192826Z:4b751e8f-e5ce-42b0-af97-93230627667c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be74d0bc-d6fd-4b4a-b861-014bf5571459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "081412c4-aa70-4f95-b462-432a165d7dc2" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "a4e5461d-6fa9-45ad-8a2c-05e67e67bd32" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192827Z:a4e5461d-6fa9-45ad-8a2c-05e67e67bd32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:27 GMT" + ], + "Content-Length": [ + "587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:27.3324555Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:27.3324555Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps9245\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "be74d0bc-d6fd-4b4a-b861-014bf5571459" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "853" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "df81b0c6-453c-40d0-a68e-290cabdb23e3" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "6920ce56-3bfe-49b2-85ce-eb48455bd333" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192828Z:6920ce56-3bfe-49b2-85ce-eb48455bd333" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:28 GMT" + ], + "Content-Length": [ + "1405" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:28.3874775Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:28.3874775Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "394" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "518bc284-e60e-4ae6-8e68-d8f263b058fb" + ], + "x-ms-correlation-request-id": [ + "518bc284-e60e-4ae6-8e68-d8f263b058fb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192830Z:518bc284-e60e-4ae6-8e68-d8f263b058fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:29 GMT" + ], + "Content-Length": [ + "752" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:30.0801918Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"518bc284-e60e-4ae6-8e68-d8f263b058fb\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "394" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operationStatuses/08585886215750226476?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + ], + "x-ms-correlation-request-id": [ + "6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192831Z:6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:30 GMT" + ], + "Content-Length": [ + "735" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T19:28:31.1497894Z\",\r\n \"duration\": \"PT0.6948336S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "c3319e09-b218-4cbf-8300-27028a8c8b80" + ], + "x-ms-correlation-request-id": [ + "c3319e09-b218-4cbf-8300-27028a8c8b80" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192831Z:c3319e09-b218-4cbf-8300-27028a8c8b80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "8a06b836-1665-46c2-8cc1-05fbefaf3817" + ], + "x-ms-correlation-request-id": [ + "8a06b836-1665-46c2-8cc1-05fbefaf3817" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192831Z:8a06b836-1665-46c2-8cc1-05fbefaf3817" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "daef0056-c61e-424e-8ab7-9cb7992471c9" + ], + "x-ms-correlation-request-id": [ + "daef0056-c61e-424e-8ab7-9cb7992471c9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:daef0056-c61e-424e-8ab7-9cb7992471c9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11993" + ], + "x-ms-request-id": [ + "c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + ], + "x-ms-correlation-request-id": [ + "c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11991" + ], + "x-ms-request-id": [ + "fde08abc-40b2-4ee9-bcc3-693f650d54b2" + ], + "x-ms-correlation-request-id": [ + "fde08abc-40b2-4ee9-bcc3-693f650d54b2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:fde08abc-40b2-4ee9-bcc3-693f650d54b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "434" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations/08585886215750226476\",\r\n \"operationId\": \"08585886215750226476\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:32.5640657Z\",\r\n \"duration\": \"PT0.0738511S\",\r\n \"trackingId\": \"4390e13d-f5f9-498e-8801-bffcaeab3660\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "0217c5d2-6de8-4389-a307-987551180cbc" + ], + "x-ms-correlation-request-id": [ + "0217c5d2-6de8-4389-a307-987551180cbc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192831Z:0217c5d2-6de8-4389-a307-987551180cbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "735" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T19:28:31.1497894Z\",\r\n \"duration\": \"PT0.6948336S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "ee67c0be-aa0a-45fe-9c7b-b6954940f871" + ], + "x-ms-correlation-request-id": [ + "ee67c0be-aa0a-45fe-9c7b-b6954940f871" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:ee67c0be-aa0a-45fe-9c7b-b6954940f871" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11994" + ], + "x-ms-request-id": [ + "208d62a5-601f-4728-ba28-0e161a6b92db" + ], + "x-ms-correlation-request-id": [ + "208d62a5-601f-4728-ba28-0e161a6b92db" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:208d62a5-601f-4728-ba28-0e161a6b92db" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11992" + ], + "x-ms-request-id": [ + "59b5c77d-406f-4503-965c-58e962c0c6ba" + ], + "x-ms-correlation-request-id": [ + "59b5c77d-406f-4503-965c-58e962c0c6ba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:59b5c77d-406f-4503-965c-58e962c0c6ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "734" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31cc289d-3015-4f94-8a2c-9210432738f8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11990" + ], + "x-ms-request-id": [ + "f4505041-a82c-444b-8d1b-4572dfd00e98" + ], + "x-ms-correlation-request-id": [ + "f4505041-a82c-444b-8d1b-4572dfd00e98" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192832Z:f4505041-a82c-444b-8d1b-4572dfd00e98" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "845" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:32.5789716Z\",\r\n \"duration\": \"PT2.1240158S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + ], + "x-ms-correlation-request-id": [ + "ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192833Z:ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:28:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + ], + "x-ms-correlation-request-id": [ + "5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192910Z:5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:29:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "959e78e7-c30c-4268-a270-443f0a096254" + ], + "x-ms-correlation-request-id": [ + "959e78e7-c30c-4268-a270-443f0a096254" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192925Z:959e78e7-c30c-4268-a270-443f0a096254" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:29:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4780576f-9424-459c-ae66-10a88ce67e45" + ], + "x-ms-correlation-request-id": [ + "4780576f-9424-459c-ae66-10a88ce67e45" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192941Z:4780576f-9424-459c-ae66-10a88ce67e45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:29:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "3f89ac34-3903-480d-8f85-9466da6b81e4" + ], + "x-ms-correlation-request-id": [ + "3f89ac34-3903-480d-8f85-9466da6b81e4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T192956Z:3f89ac34-3903-480d-8f85-9466da6b81e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:29:56 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + ], + "x-ms-correlation-request-id": [ + "bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T193011Z:bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:30:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "cfc8c748-c999-475e-ae20-944d74957c3c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "ff20c510-ce88-4c03-ae53-27dd1cee0799" + ], + "x-ms-correlation-request-id": [ + "ff20c510-ce88-4c03-ae53-27dd1cee0799" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T193011Z:ff20c510-ce88-4c03-ae53-27dd1cee0799" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 19:30:11 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewMGDeploymentFromTemplateSpec": [ + "ps7482", + "ps9245" + ] + }, + "Variables": { + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json new file mode 100644 index 000000000000..fbdae9ea8a1a --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json @@ -0,0 +1,12004 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c9d808c-3921-4f3e-b767-15f6bd024f0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "9dee2d39-81e4-4d72-8a61-683481ca303b" + ], + "x-ms-correlation-request-id": [ + "9dee2d39-81e4-4d72-8a61-683481ca303b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173844Z:9dee2d39-81e4-4d72-8a61-683481ca303b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:43 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1832727d-8c3d-462e-a0ce-546bb4a651af" + ], + "x-ms-correlation-request-id": [ + "1832727d-8c3d-462e-a0ce-546bb4a651af" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173924Z:1832727d-8c3d-462e-a0ce-546bb4a651af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:23 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8c9d808c-3921-4f3e-b767-15f6bd024f0e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "9fa0346d-de5e-4034-b136-e5a12e970dfe" + ], + "x-ms-correlation-request-id": [ + "9fa0346d-de5e-4034-b136-e5a12e970dfe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173845Z:9fa0346d-de5e-4034-b136-e5a12e970dfe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:44 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758\",\r\n \"name\": \"ps2758\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab3e513-95e6-4ef5-9686-499d53d991de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + ], + "x-ms-correlation-request-id": [ + "c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173846Z:c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675/versions/v1' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab3e513-95e6-4ef5-9686-499d53d991de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "8f7443b5-304f-4d11-b0e1-49f07f214c42" + ], + "x-ms-correlation-request-id": [ + "8f7443b5-304f-4d11-b0e1-49f07f214c42" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173847Z:8f7443b5-304f-4d11-b0e1-49f07f214c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675/versions/v1' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2c7d54b6-3a7a-4591-be27-9d04bdbcb8b8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b5b51b33-fda0-4c73-bad9-2dda50144573" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f554b45e-9db0-4f88-ace6-411d906e25a2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173849Z:f554b45e-9db0-4f88-ace6-411d906e25a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:48 GMT" + ], + "Content-Length": [ + "3473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:48.7072869Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:48.7072869Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab3e513-95e6-4ef5-9686-499d53d991de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + ], + "x-ms-correlation-request-id": [ + "fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173846Z:fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab3e513-95e6-4ef5-9686-499d53d991de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2f8643be-9a27-4b96-813d-d9876170abd5" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "cc3121ba-d297-4b9f-a604-54b85613c53d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173847Z:cc3121ba-d297-4b9f-a604-54b85613c53d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:47 GMT" + ], + "Content-Length": [ + "587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:47.2871692Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:47.2871692Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps4675\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7ab3e513-95e6-4ef5-9686-499d53d991de" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2921" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1b1e5141-0517-47ff-a54f-31545a43bb94" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "005af498-c988-4e57-82c3-d16dd38c6985" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173848Z:005af498-c988-4e57-82c3-d16dd38c6985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:48 GMT" + ], + "Content-Length": [ + "3473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:48.7072869Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:48.7072869Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "373" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "bbd385ef-a6a4-42cf-8a54-eee82c985e57" + ], + "x-ms-correlation-request-id": [ + "bbd385ef-a6a4-42cf-8a54-eee82c985e57" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173850Z:bbd385ef-a6a4-42cf-8a54-eee82c985e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:50 GMT" + ], + "Content-Length": [ + "2783" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:50.3678952Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"bbd385ef-a6a4-42cf-8a54-eee82c985e57\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "373" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operationStatuses/08585886281540761016?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "5a9e11ac-b63d-4253-8d2a-4b44c9694647" + ], + "x-ms-correlation-request-id": [ + "5a9e11ac-b63d-4253-8d2a-4b44c9694647" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173851Z:5a9e11ac-b63d-4253-8d2a-4b44c9694647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:51 GMT" + ], + "Content-Length": [ + "2081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "25dce7c4-4f4a-40dc-b111-45c04a88843b" + ], + "x-ms-correlation-request-id": [ + "25dce7c4-4f4a-40dc-b111-45c04a88843b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173852Z:25dce7c4-4f4a-40dc-b111-45c04a88843b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "bbdea07c-21e7-4040-a056-836a12be8c27" + ], + "x-ms-correlation-request-id": [ + "bbdea07c-21e7-4040-a056-836a12be8c27" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173852Z:bbdea07c-21e7-4040-a056-836a12be8c27" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "7f428550-d1ea-44b4-93a0-27becaebe0ab" + ], + "x-ms-correlation-request-id": [ + "7f428550-d1ea-44b4-93a0-27becaebe0ab" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:7f428550-d1ea-44b4-93a0-27becaebe0ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + ], + "x-ms-correlation-request-id": [ + "3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "85642646-eddf-4892-a9de-ad9e26af7b1c" + ], + "x-ms-correlation-request-id": [ + "85642646-eddf-4892-a9de-ad9e26af7b1c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:85642646-eddf-4892-a9de-ad9e26af7b1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "694" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "8b777d93-fcb2-4dc9-9436-a9381faacac3" + ], + "x-ms-correlation-request-id": [ + "8b777d93-fcb2-4dc9-9436-a9381faacac3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:8b777d93-fcb2-4dc9-9436-a9381faacac3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2067" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "0063a62e-de14-4509-a2ec-e4634c496d25" + ], + "x-ms-correlation-request-id": [ + "0063a62e-de14-4509-a2ec-e4634c496d25" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:0063a62e-de14-4509-a2ec-e4634c496d25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2067" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "a473439b-18a9-4246-a401-a86796538960" + ], + "x-ms-correlation-request-id": [ + "a473439b-18a9-4246-a401-a86796538960" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:a473439b-18a9-4246-a401-a86796538960" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2067" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "30ac3726-da48-4b3a-9367-56a55f1c4bdc" + ], + "x-ms-correlation-request-id": [ + "30ac3726-da48-4b3a-9367-56a55f1c4bdc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:30ac3726-da48-4b3a-9367-56a55f1c4bdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + ], + "x-ms-correlation-request-id": [ + "18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173855Z:18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "83e78c6d-352b-4727-b31e-24b452bbc969" + ], + "x-ms-correlation-request-id": [ + "83e78c6d-352b-4727-b31e-24b452bbc969" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173856Z:83e78c6d-352b-4727-b31e-24b452bbc969" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "5021ed0a-df7a-4238-aab3-49a42668ba7c" + ], + "x-ms-correlation-request-id": [ + "5021ed0a-df7a-4238-aab3-49a42668ba7c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173857Z:5021ed0a-df7a-4238-aab3-49a42668ba7c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "08e29529-e07e-4e9b-be69-20c2d758582b" + ], + "x-ms-correlation-request-id": [ + "08e29529-e07e-4e9b-be69-20c2d758582b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173858Z:08e29529-e07e-4e9b-be69-20c2d758582b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + ], + "x-ms-correlation-request-id": [ + "ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "5a6bd965-d887-4f3c-9195-bb724e87fbdd" + ], + "x-ms-correlation-request-id": [ + "5a6bd965-d887-4f3c-9195-bb724e87fbdd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:5a6bd965-d887-4f3c-9195-bb724e87fbdd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "b31f93cc-0948-4984-8d01-432e0e49d05f" + ], + "x-ms-correlation-request-id": [ + "b31f93cc-0948-4984-8d01-432e0e49d05f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173900Z:b31f93cc-0948-4984-8d01-432e0e49d05f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "8c72cb85-8db9-40f2-912a-f3426966bf3b" + ], + "x-ms-correlation-request-id": [ + "8c72cb85-8db9-40f2-912a-f3426966bf3b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:8c72cb85-8db9-40f2-912a-f3426966bf3b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "8e463778-9d77-486c-bb27-b8eff639cf34" + ], + "x-ms-correlation-request-id": [ + "8e463778-9d77-486c-bb27-b8eff639cf34" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:8e463778-9d77-486c-bb27-b8eff639cf34" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + ], + "x-ms-correlation-request-id": [ + "f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173902Z:f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + ], + "x-ms-correlation-request-id": [ + "9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173903Z:9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + ], + "x-ms-correlation-request-id": [ + "0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173904Z:0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "5bb61efd-7d7b-49e3-854d-f53db8eb5200" + ], + "x-ms-correlation-request-id": [ + "5bb61efd-7d7b-49e3-854d-f53db8eb5200" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:5bb61efd-7d7b-49e3-854d-f53db8eb5200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + ], + "x-ms-correlation-request-id": [ + "2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "0000643c-a618-45da-9b05-05c32d3c912d" + ], + "x-ms-correlation-request-id": [ + "0000643c-a618-45da-9b05-05c32d3c912d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173906Z:0000643c-a618-45da-9b05-05c32d3c912d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "3b4981e4-1934-48c9-8694-4cdab05a2264" + ], + "x-ms-correlation-request-id": [ + "3b4981e4-1934-48c9-8694-4cdab05a2264" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:3b4981e4-1934-48c9-8694-4cdab05a2264" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "5823003b-0595-4745-a73f-4b6141faf52f" + ], + "x-ms-correlation-request-id": [ + "5823003b-0595-4745-a73f-4b6141faf52f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:5823003b-0595-4745-a73f-4b6141faf52f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "690aae67-d2db-4127-b6c4-9249da0500ce" + ], + "x-ms-correlation-request-id": [ + "690aae67-d2db-4127-b6c4-9249da0500ce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:690aae67-d2db-4127-b6c4-9249da0500ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "f300b375-5afa-42e3-9cc5-3f11cfc95469" + ], + "x-ms-correlation-request-id": [ + "f300b375-5afa-42e3-9cc5-3f11cfc95469" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173909Z:f300b375-5afa-42e3-9cc5-3f11cfc95469" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + ], + "x-ms-correlation-request-id": [ + "8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173910Z:8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "df02c941-cc1e-4076-8b89-8e46f300492c" + ], + "x-ms-correlation-request-id": [ + "df02c941-cc1e-4076-8b89-8e46f300492c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173910Z:df02c941-cc1e-4076-8b89-8e46f300492c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2772" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-request-id": [ + "d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + ], + "x-ms-correlation-request-id": [ + "d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-request-id": [ + "4f299da2-2c4c-45b2-be79-e5b9c588a815" + ], + "x-ms-correlation-request-id": [ + "4f299da2-2c4c-45b2-be79-e5b9c588a815" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173912Z:4f299da2-2c4c-45b2-be79-e5b9c588a815" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-request-id": [ + "40ccb6a9-8fb2-4562-a978-385b83814671" + ], + "x-ms-correlation-request-id": [ + "40ccb6a9-8fb2-4562-a978-385b83814671" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173913Z:40ccb6a9-8fb2-4562-a978-385b83814671" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-request-id": [ + "7245a945-a38b-433c-b093-f94fbe0cf657" + ], + "x-ms-correlation-request-id": [ + "7245a945-a38b-433c-b093-f94fbe0cf657" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173913Z:7245a945-a38b-433c-b093-f94fbe0cf657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-request-id": [ + "f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + ], + "x-ms-correlation-request-id": [ + "f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-request-id": [ + "c8196671-43c0-46a1-81a9-ce4d67419f4f" + ], + "x-ms-correlation-request-id": [ + "c8196671-43c0-46a1-81a9-ce4d67419f4f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173915Z:c8196671-43c0-46a1-81a9-ce4d67419f4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11871" + ], + "x-ms-request-id": [ + "d43f20e4-2eec-4c83-a6d5-a63a833c9094" + ], + "x-ms-correlation-request-id": [ + "d43f20e4-2eec-4c83-a6d5-a63a833c9094" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173916Z:d43f20e4-2eec-4c83-a6d5-a63a833c9094" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11867" + ], + "x-ms-request-id": [ + "d40577a2-a1d0-4407-8691-a72575216161" + ], + "x-ms-correlation-request-id": [ + "d40577a2-a1d0-4407-8691-a72575216161" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173916Z:d40577a2-a1d0-4407-8691-a72575216161" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11863" + ], + "x-ms-request-id": [ + "549ca724-ae81-4e1f-bf23-fec756e9b238" + ], + "x-ms-correlation-request-id": [ + "549ca724-ae81-4e1f-bf23-fec756e9b238" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:549ca724-ae81-4e1f-bf23-fec756e9b238" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11859" + ], + "x-ms-request-id": [ + "d59c2876-5def-421b-9bfc-42a5cbf18366" + ], + "x-ms-correlation-request-id": [ + "d59c2876-5def-421b-9bfc-42a5cbf18366" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173918Z:d59c2876-5def-421b-9bfc-42a5cbf18366" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11855" + ], + "x-ms-request-id": [ + "fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + ], + "x-ms-correlation-request-id": [ + "fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11851" + ], + "x-ms-request-id": [ + "fdcc33f3-c340-4c4d-b923-46298d1f4c80" + ], + "x-ms-correlation-request-id": [ + "fdcc33f3-c340-4c4d-b923-46298d1f4c80" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:fdcc33f3-c340-4c4d-b923-46298d1f4c80" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11847" + ], + "x-ms-request-id": [ + "26410046-bc20-46a6-941a-4787c6d61d4a" + ], + "x-ms-correlation-request-id": [ + "26410046-bc20-46a6-941a-4787c6d61d4a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173920Z:26410046-bc20-46a6-941a-4787c6d61d4a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11843" + ], + "x-ms-request-id": [ + "f500958c-ff08-4ab1-83e5-733723ac2989" + ], + "x-ms-correlation-request-id": [ + "f500958c-ff08-4ab1-83e5-733723ac2989" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173921Z:f500958c-ff08-4ab1-83e5-733723ac2989" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11839" + ], + "x-ms-request-id": [ + "26ce3db8-9777-4604-868e-75330720d0ef" + ], + "x-ms-correlation-request-id": [ + "26ce3db8-9777-4604-868e-75330720d0ef" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:26ce3db8-9777-4604-868e-75330720d0ef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11835" + ], + "x-ms-request-id": [ + "ddb390ce-5623-43ea-ac2d-83d8bbd81760" + ], + "x-ms-correlation-request-id": [ + "ddb390ce-5623-43ea-ac2d-83d8bbd81760" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:ddb390ce-5623-43ea-ac2d-83d8bbd81760" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2771" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11831" + ], + "x-ms-request-id": [ + "99c15838-9876-48f0-9142-72eb34206715" + ], + "x-ms-correlation-request-id": [ + "99c15838-9876-48f0-9142-72eb34206715" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:99c15838-9876-48f0-9142-72eb34206715" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "3185" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.3322395Z\",\r\n \"duration\": \"PT30.4296154S\",\r\n \"trackingId\": \"82de6a1d-9472-4332-92f3-5faaa7714aa6\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/08585886281540761016\",\r\n \"operationId\": \"08585886281540761016\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.4211922Z\",\r\n \"duration\": \"PT0.0484263S\",\r\n \"trackingId\": \"f3946adc-94cd-459e-a9f6-8b88a4e7c27e\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b692afc3-6a2b-48f3-9222-b9159422df78" + ], + "x-ms-correlation-request-id": [ + "b692afc3-6a2b-48f3-9222-b9159422df78" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173852Z:b692afc3-6a2b-48f3-9222-b9159422df78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "8d23b616-7896-43b9-b7b1-859593519f22" + ], + "x-ms-correlation-request-id": [ + "8d23b616-7896-43b9-b7b1-859593519f22" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173852Z:8d23b616-7896-43b9-b7b1-859593519f22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "6be1e196-8f52-43de-8977-38dd38b04f71" + ], + "x-ms-correlation-request-id": [ + "6be1e196-8f52-43de-8977-38dd38b04f71" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:6be1e196-8f52-43de-8977-38dd38b04f71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "ffddcb88-b933-44e4-a510-f5fba9ce5372" + ], + "x-ms-correlation-request-id": [ + "ffddcb88-b933-44e4-a510-f5fba9ce5372" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:ffddcb88-b933-44e4-a510-f5fba9ce5372" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" + ], + "x-ms-correlation-request-id": [ + "c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173853Z:c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "e69919bd-f20f-4683-b54b-eb161d18f461" + ], + "x-ms-correlation-request-id": [ + "e69919bd-f20f-4683-b54b-eb161d18f461" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:e69919bd-f20f-4683-b54b-eb161d18f461" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "31b51fe2-2bdf-4760-aa64-9a16e28aa654" + ], + "x-ms-correlation-request-id": [ + "31b51fe2-2bdf-4760-aa64-9a16e28aa654" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:31b51fe2-2bdf-4760-aa64-9a16e28aa654" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "5b95cf63-01e3-4f52-bbc0-ffab7a062f04" + ], + "x-ms-correlation-request-id": [ + "5b95cf63-01e3-4f52-bbc0-ffab7a062f04" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173854Z:5b95cf63-01e3-4f52-bbc0-ffab7a062f04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:54 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.6928502Z\",\r\n \"duration\": \"PT3.2913162S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "eee7563f-583d-4ec6-9ecc-4d1b86714ecd" + ], + "x-ms-correlation-request-id": [ + "eee7563f-583d-4ec6-9ecc-4d1b86714ecd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173855Z:eee7563f-583d-4ec6-9ecc-4d1b86714ecd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "abb7489d-677d-443e-9f5f-e2b7066f15d9" + ], + "x-ms-correlation-request-id": [ + "abb7489d-677d-443e-9f5f-e2b7066f15d9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173856Z:abb7489d-677d-443e-9f5f-e2b7066f15d9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "79fc9833-d254-4c90-81fa-1f2d3798af49" + ], + "x-ms-correlation-request-id": [ + "79fc9833-d254-4c90-81fa-1f2d3798af49" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173857Z:79fc9833-d254-4c90-81fa-1f2d3798af49" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "2f29be89-ac5f-4d1b-9973-794cf9ee6368" + ], + "x-ms-correlation-request-id": [ + "2f29be89-ac5f-4d1b-9973-794cf9ee6368" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173857Z:2f29be89-ac5f-4d1b-9973-794cf9ee6368" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "a388c839-145a-4d85-9c57-5005088ae1b6" + ], + "x-ms-correlation-request-id": [ + "a388c839-145a-4d85-9c57-5005088ae1b6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173858Z:a388c839-145a-4d85-9c57-5005088ae1b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "d2af11bf-ae4a-4743-b72e-6453f11e4ead" + ], + "x-ms-correlation-request-id": [ + "d2af11bf-ae4a-4743-b72e-6453f11e4ead" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:d2af11bf-ae4a-4743-b72e-6453f11e4ead" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "74ab2deb-dc10-47af-8709-eaded1b63a9e" + ], + "x-ms-correlation-request-id": [ + "74ab2deb-dc10-47af-8709-eaded1b63a9e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173900Z:74ab2deb-dc10-47af-8709-eaded1b63a9e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "804cc56a-eb14-42ef-9ec0-922fa87c6932" + ], + "x-ms-correlation-request-id": [ + "804cc56a-eb14-42ef-9ec0-922fa87c6932" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:804cc56a-eb14-42ef-9ec0-922fa87c6932" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "53b624c9-cba6-4866-aa59-aa4607bdbb75" + ], + "x-ms-correlation-request-id": [ + "53b624c9-cba6-4866-aa59-aa4607bdbb75" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:53b624c9-cba6-4866-aa59-aa4607bdbb75" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "6e0bfa85-a159-42f5-b3c0-6d859514e69d" + ], + "x-ms-correlation-request-id": [ + "6e0bfa85-a159-42f5-b3c0-6d859514e69d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173902Z:6e0bfa85-a159-42f5-b3c0-6d859514e69d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" + ], + "x-ms-correlation-request-id": [ + "5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173903Z:5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "20c180c9-cbef-46ff-8b3a-3671b494053d" + ], + "x-ms-correlation-request-id": [ + "20c180c9-cbef-46ff-8b3a-3671b494053d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173904Z:20c180c9-cbef-46ff-8b3a-3671b494053d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" + ], + "x-ms-correlation-request-id": [ + "80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173904Z:80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "8d519e43-a9c0-4538-9a76-d1638b516a6b" + ], + "x-ms-correlation-request-id": [ + "8d519e43-a9c0-4538-9a76-d1638b516a6b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:8d519e43-a9c0-4538-9a76-d1638b516a6b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "de436f9f-9f8c-4750-8662-c2dea2e2ffbd" + ], + "x-ms-correlation-request-id": [ + "de436f9f-9f8c-4750-8662-c2dea2e2ffbd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173906Z:de436f9f-9f8c-4750-8662-c2dea2e2ffbd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "f01e6c5e-b0e2-4963-8407-e86adad83dba" + ], + "x-ms-correlation-request-id": [ + "f01e6c5e-b0e2-4963-8407-e86adad83dba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:f01e6c5e-b0e2-4963-8407-e86adad83dba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "927723fb-39ac-4fe6-8436-5f54fba2730f" + ], + "x-ms-correlation-request-id": [ + "927723fb-39ac-4fe6-8436-5f54fba2730f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:927723fb-39ac-4fe6-8436-5f54fba2730f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "b4af44c3-52bb-4afd-861a-f3331fb777d1" + ], + "x-ms-correlation-request-id": [ + "b4af44c3-52bb-4afd-861a-f3331fb777d1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:b4af44c3-52bb-4afd-861a-f3331fb777d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "8e79bc61-e002-4a73-bbb5-4e11494cdccd" + ], + "x-ms-correlation-request-id": [ + "8e79bc61-e002-4a73-bbb5-4e11494cdccd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173909Z:8e79bc61-e002-4a73-bbb5-4e11494cdccd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "7e8e052f-d56e-4640-b534-5ab116c0284e" + ], + "x-ms-correlation-request-id": [ + "7e8e052f-d56e-4640-b534-5ab116c0284e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173909Z:7e8e052f-d56e-4640-b534-5ab116c0284e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "51001451-ce10-43fd-b581-4389690b44dc" + ], + "x-ms-correlation-request-id": [ + "51001451-ce10-43fd-b581-4389690b44dc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173910Z:51001451-ce10-43fd-b581-4389690b44dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "x-ms-request-id": [ + "241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" + ], + "x-ms-correlation-request-id": [ + "241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-request-id": [ + "7f2f0d51-ab89-49e4-9e61-257e9f67ed41" + ], + "x-ms-correlation-request-id": [ + "7f2f0d51-ab89-49e4-9e61-257e9f67ed41" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173912Z:7f2f0d51-ab89-49e4-9e61-257e9f67ed41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-request-id": [ + "8d5ee516-822a-4b80-bde8-ebf56e1c54a4" + ], + "x-ms-correlation-request-id": [ + "8d5ee516-822a-4b80-bde8-ebf56e1c54a4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173912Z:8d5ee516-822a-4b80-bde8-ebf56e1c54a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-request-id": [ + "f113bdb1-f47c-488c-b7ec-6b71ac94dc56" + ], + "x-ms-correlation-request-id": [ + "f113bdb1-f47c-488c-b7ec-6b71ac94dc56" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173913Z:f113bdb1-f47c-488c-b7ec-6b71ac94dc56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-request-id": [ + "d5720bf8-5c2c-454e-a761-a25bf78460df" + ], + "x-ms-correlation-request-id": [ + "d5720bf8-5c2c-454e-a761-a25bf78460df" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:d5720bf8-5c2c-454e-a761-a25bf78460df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-request-id": [ + "75162c00-e4f8-4e73-9307-428c2b3d72b2" + ], + "x-ms-correlation-request-id": [ + "75162c00-e4f8-4e73-9307-428c2b3d72b2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173915Z:75162c00-e4f8-4e73-9307-428c2b3d72b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11872" + ], + "x-ms-request-id": [ + "808aea2d-eadc-4cd9-b5ba-fe79abd562a1" + ], + "x-ms-correlation-request-id": [ + "808aea2d-eadc-4cd9-b5ba-fe79abd562a1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173915Z:808aea2d-eadc-4cd9-b5ba-fe79abd562a1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11868" + ], + "x-ms-request-id": [ + "28128309-1052-45a1-b7f8-d5d673d46dfd" + ], + "x-ms-correlation-request-id": [ + "28128309-1052-45a1-b7f8-d5d673d46dfd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173916Z:28128309-1052-45a1-b7f8-d5d673d46dfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11864" + ], + "x-ms-request-id": [ + "7cc4e23e-c5ce-442d-87f7-1492877488cb" + ], + "x-ms-correlation-request-id": [ + "7cc4e23e-c5ce-442d-87f7-1492877488cb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:7cc4e23e-c5ce-442d-87f7-1492877488cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11860" + ], + "x-ms-request-id": [ + "345b221b-1f5d-43ff-adcd-f1a68bf565f0" + ], + "x-ms-correlation-request-id": [ + "345b221b-1f5d-43ff-adcd-f1a68bf565f0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173918Z:345b221b-1f5d-43ff-adcd-f1a68bf565f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11856" + ], + "x-ms-request-id": [ + "d94fc56c-5b79-4635-8254-2e7dc1f2c352" + ], + "x-ms-correlation-request-id": [ + "d94fc56c-5b79-4635-8254-2e7dc1f2c352" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173918Z:d94fc56c-5b79-4635-8254-2e7dc1f2c352" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11852" + ], + "x-ms-request-id": [ + "94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" + ], + "x-ms-correlation-request-id": [ + "94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11848" + ], + "x-ms-request-id": [ + "281e3274-b9dc-475e-8bb0-2020eb09e2cc" + ], + "x-ms-correlation-request-id": [ + "281e3274-b9dc-475e-8bb0-2020eb09e2cc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173920Z:281e3274-b9dc-475e-8bb0-2020eb09e2cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11844" + ], + "x-ms-request-id": [ + "f7cccec3-8315-45e9-bb55-371b66d835b8" + ], + "x-ms-correlation-request-id": [ + "f7cccec3-8315-45e9-bb55-371b66d835b8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173921Z:f7cccec3-8315-45e9-bb55-371b66d835b8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11840" + ], + "x-ms-request-id": [ + "37a76526-b4ee-4edf-866a-9d22484f9a32" + ], + "x-ms-correlation-request-id": [ + "37a76526-b4ee-4edf-866a-9d22484f9a32" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173921Z:37a76526-b4ee-4edf-866a-9d22484f9a32" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11836" + ], + "x-ms-request-id": [ + "d618b6cd-ffb7-4469-b626-8da665fe7cde" + ], + "x-ms-correlation-request-id": [ + "d618b6cd-ffb7-4469-b626-8da665fe7cde" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:d618b6cd-ffb7-4469-b626-8da665fe7cde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11832" + ], + "x-ms-request-id": [ + "bc80a346-c228-48be-b739-ee2abf2a4107" + ], + "x-ms-correlation-request-id": [ + "bc80a346-c228-48be-b739-ee2abf2a4107" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:bc80a346-c228-48be-b739-ee2abf2a4107" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2081" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11828" + ], + "x-ms-request-id": [ + "dc13f58f-2da4-4b6d-a2f9-23d81410f610" + ], + "x-ms-correlation-request-id": [ + "dc13f58f-2da4-4b6d-a2f9-23d81410f610" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:dc13f58f-2da4-4b6d-a2f9-23d81410f610" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2629" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.4384227Z\",\r\n \"duration\": \"PT32.0368887S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "73d39ecb-da98-4653-a7b1-d589bff6f86d" + ], + "x-ms-correlation-request-id": [ + "73d39ecb-da98-4653-a7b1-d589bff6f86d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173855Z:73d39ecb-da98-4653-a7b1-d589bff6f86d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:55 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "5b265454-bfd0-481e-aa3f-69fd64cf1647" + ], + "x-ms-correlation-request-id": [ + "5b265454-bfd0-481e-aa3f-69fd64cf1647" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173855Z:5b265454-bfd0-481e-aa3f-69fd64cf1647" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:55 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "dc52f611-a19f-40b8-8c4e-92c2beabebc0" + ], + "x-ms-correlation-request-id": [ + "dc52f611-a19f-40b8-8c4e-92c2beabebc0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173856Z:dc52f611-a19f-40b8-8c4e-92c2beabebc0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:56 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "0b2c22c1-b26f-4158-9b63-724a08889828" + ], + "x-ms-correlation-request-id": [ + "0b2c22c1-b26f-4158-9b63-724a08889828" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173857Z:0b2c22c1-b26f-4158-9b63-724a08889828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:57 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "13080a35-8753-4686-b0c7-92f67b31ca9a" + ], + "x-ms-correlation-request-id": [ + "13080a35-8753-4686-b0c7-92f67b31ca9a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173858Z:13080a35-8753-4686-b0c7-92f67b31ca9a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:58 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" + ], + "x-ms-correlation-request-id": [ + "62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" + ], + "x-ms-correlation-request-id": [ + "2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "d1c64308-684c-4ade-9355-a5b820ef4fe6" + ], + "x-ms-correlation-request-id": [ + "d1c64308-684c-4ade-9355-a5b820ef4fe6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173900Z:d1c64308-684c-4ade-9355-a5b820ef4fe6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:00 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "65e61107-27f7-4080-90cc-ef33170dac3e" + ], + "x-ms-correlation-request-id": [ + "65e61107-27f7-4080-90cc-ef33170dac3e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:65e61107-27f7-4080-90cc-ef33170dac3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:01 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "133a8375-6b46-40ac-9c74-4049c2270c63" + ], + "x-ms-correlation-request-id": [ + "133a8375-6b46-40ac-9c74-4049c2270c63" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173902Z:133a8375-6b46-40ac-9c74-4049c2270c63" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "8c1ad156-46d0-4c4a-8d87-63edd40114fd" + ], + "x-ms-correlation-request-id": [ + "8c1ad156-46d0-4c4a-8d87-63edd40114fd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173902Z:8c1ad156-46d0-4c4a-8d87-63edd40114fd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "528919ee-70c9-4fe0-afc9-a44aae9be10f" + ], + "x-ms-correlation-request-id": [ + "528919ee-70c9-4fe0-afc9-a44aae9be10f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173903Z:528919ee-70c9-4fe0-afc9-a44aae9be10f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:03 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "6c3668d6-1624-4ba9-853e-3efa0669452b" + ], + "x-ms-correlation-request-id": [ + "6c3668d6-1624-4ba9-853e-3efa0669452b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173904Z:6c3668d6-1624-4ba9-853e-3efa0669452b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "88edde7f-336b-42a5-a368-7e124b50e769" + ], + "x-ms-correlation-request-id": [ + "88edde7f-336b-42a5-a368-7e124b50e769" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:88edde7f-336b-42a5-a368-7e124b50e769" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "3dfea79c-9e54-4eb0-8245-f0b682e92144" + ], + "x-ms-correlation-request-id": [ + "3dfea79c-9e54-4eb0-8245-f0b682e92144" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:3dfea79c-9e54-4eb0-8245-f0b682e92144" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:05 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "4b26cf18-51a8-48f3-93e3-4d1a767910a3" + ], + "x-ms-correlation-request-id": [ + "4b26cf18-51a8-48f3-93e3-4d1a767910a3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173906Z:4b26cf18-51a8-48f3-93e3-4d1a767910a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "0f8eb2a1-808c-4762-b4ee-041b2df09e56" + ], + "x-ms-correlation-request-id": [ + "0f8eb2a1-808c-4762-b4ee-041b2df09e56" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:0f8eb2a1-808c-4762-b4ee-041b2df09e56" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "b45a302a-ee8c-478c-af4d-21ea5d0e79d7" + ], + "x-ms-correlation-request-id": [ + "b45a302a-ee8c-478c-af4d-21ea5d0e79d7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:b45a302a-ee8c-478c-af4d-21ea5d0e79d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" + ], + "x-ms-correlation-request-id": [ + "0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:08 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" + ], + "x-ms-correlation-request-id": [ + "e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173909Z:e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:09 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "0f702098-4716-4b91-a465-ac0359d0ac36" + ], + "x-ms-correlation-request-id": [ + "0f702098-4716-4b91-a465-ac0359d0ac36" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173910Z:0f702098-4716-4b91-a465-ac0359d0ac36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:10 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "d95c59ff-b34d-4967-b9fe-bcceb621f070" + ], + "x-ms-correlation-request-id": [ + "d95c59ff-b34d-4967-b9fe-bcceb621f070" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:d95c59ff-b34d-4967-b9fe-bcceb621f070" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:10 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-request-id": [ + "6de6b301-caca-493f-9700-bb5665d88651" + ], + "x-ms-correlation-request-id": [ + "6de6b301-caca-493f-9700-bb5665d88651" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:6de6b301-caca-493f-9700-bb5665d88651" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-request-id": [ + "a78e8e7b-d4fc-4356-8488-8feb2aa396c6" + ], + "x-ms-correlation-request-id": [ + "a78e8e7b-d4fc-4356-8488-8feb2aa396c6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173912Z:a78e8e7b-d4fc-4356-8488-8feb2aa396c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-request-id": [ + "53c0126b-d4a8-45c8-9d09-0d3d42b1919c" + ], + "x-ms-correlation-request-id": [ + "53c0126b-d4a8-45c8-9d09-0d3d42b1919c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173913Z:53c0126b-d4a8-45c8-9d09-0d3d42b1919c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-request-id": [ + "275ca3e0-708f-43d1-aae2-fa1f2c6d9118" + ], + "x-ms-correlation-request-id": [ + "275ca3e0-708f-43d1-aae2-fa1f2c6d9118" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:275ca3e0-708f-43d1-aae2-fa1f2c6d9118" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:13 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "x-ms-request-id": [ + "269d1b7a-0acb-4375-9084-c553d840165c" + ], + "x-ms-correlation-request-id": [ + "269d1b7a-0acb-4375-9084-c553d840165c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:269d1b7a-0acb-4375-9084-c553d840165c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-request-id": [ + "2ee6618e-7853-4789-a1ff-79317254c8a4" + ], + "x-ms-correlation-request-id": [ + "2ee6618e-7853-4789-a1ff-79317254c8a4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173915Z:2ee6618e-7853-4789-a1ff-79317254c8a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:15 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11870" + ], + "x-ms-request-id": [ + "f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" + ], + "x-ms-correlation-request-id": [ + "f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173916Z:f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11866" + ], + "x-ms-request-id": [ + "3f3c1f0b-1693-4769-a242-d9800f006793" + ], + "x-ms-correlation-request-id": [ + "3f3c1f0b-1693-4769-a242-d9800f006793" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:3f3c1f0b-1693-4769-a242-d9800f006793" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11862" + ], + "x-ms-request-id": [ + "04735cfc-7c05-4cf9-87bb-366c0079ab06" + ], + "x-ms-correlation-request-id": [ + "04735cfc-7c05-4cf9-87bb-366c0079ab06" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:04735cfc-7c05-4cf9-87bb-366c0079ab06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11858" + ], + "x-ms-request-id": [ + "1fea6fbe-aa52-4224-969b-64991068cc66" + ], + "x-ms-correlation-request-id": [ + "1fea6fbe-aa52-4224-969b-64991068cc66" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173918Z:1fea6fbe-aa52-4224-969b-64991068cc66" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:18 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11854" + ], + "x-ms-request-id": [ + "d45e4e56-86f8-463f-b02e-af9231cb53fe" + ], + "x-ms-correlation-request-id": [ + "d45e4e56-86f8-463f-b02e-af9231cb53fe" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:d45e4e56-86f8-463f-b02e-af9231cb53fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:18 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11850" + ], + "x-ms-request-id": [ + "f7a3da68-6f6a-43cf-85fa-c7629934ee41" + ], + "x-ms-correlation-request-id": [ + "f7a3da68-6f6a-43cf-85fa-c7629934ee41" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:f7a3da68-6f6a-43cf-85fa-c7629934ee41" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11846" + ], + "x-ms-request-id": [ + "92faaec6-c147-40e1-b283-c7f43ae548ea" + ], + "x-ms-correlation-request-id": [ + "92faaec6-c147-40e1-b283-c7f43ae548ea" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173920Z:92faaec6-c147-40e1-b283-c7f43ae548ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:20 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11842" + ], + "x-ms-request-id": [ + "91dd6031-4a35-41cb-8229-70ef5c0194cd" + ], + "x-ms-correlation-request-id": [ + "91dd6031-4a35-41cb-8229-70ef5c0194cd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173921Z:91dd6031-4a35-41cb-8229-70ef5c0194cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:21 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11838" + ], + "x-ms-request-id": [ + "f543df23-dad4-4664-ba08-faf244d086de" + ], + "x-ms-correlation-request-id": [ + "f543df23-dad4-4664-ba08-faf244d086de" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:f543df23-dad4-4664-ba08-faf244d086de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:21 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11834" + ], + "x-ms-request-id": [ + "b0d70d9c-8c2c-443a-ac01-b4f54294a341" + ], + "x-ms-correlation-request-id": [ + "b0d70d9c-8c2c-443a-ac01-b4f54294a341" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:b0d70d9c-8c2c-443a-ac01-b4f54294a341" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11830" + ], + "x-ms-request-id": [ + "cb27cbc8-ec66-45d6-a581-3291e28703f7" + ], + "x-ms-correlation-request-id": [ + "cb27cbc8-ec66-45d6-a581-3291e28703f7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:cb27cbc8-ec66-45d6-a581-3291e28703f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:23 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "40c1df3c-8e37-4a25-b74b-200604f653d4" + ], + "x-ms-correlation-request-id": [ + "40c1df3c-8e37-4a25-b74b-200604f653d4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173855Z:40c1df3c-8e37-4a25-b74b-200604f653d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:55 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "72fbde0b-1f32-442e-ab5c-bc5e9cf63894" + ], + "x-ms-correlation-request-id": [ + "72fbde0b-1f32-442e-ab5c-bc5e9cf63894" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173856Z:72fbde0b-1f32-442e-ab5c-bc5e9cf63894" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "d992ff3a-1441-4cc7-a794-402ca326455c" + ], + "x-ms-correlation-request-id": [ + "d992ff3a-1441-4cc7-a794-402ca326455c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173856Z:d992ff3a-1441-4cc7-a794-402ca326455c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:56 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "cff9a071-04b0-4097-8ee7-8a606993c8ca" + ], + "x-ms-correlation-request-id": [ + "cff9a071-04b0-4097-8ee7-8a606993c8ca" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173857Z:cff9a071-04b0-4097-8ee7-8a606993c8ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:57 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" + ], + "x-ms-correlation-request-id": [ + "5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173858Z:5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "1a2769ec-65f7-4adf-b670-1161cf6427cd" + ], + "x-ms-correlation-request-id": [ + "1a2769ec-65f7-4adf-b670-1161cf6427cd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173859Z:1a2769ec-65f7-4adf-b670-1161cf6427cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "868f0f13-cd1f-42b2-8d7b-11d17af5ab67" + ], + "x-ms-correlation-request-id": [ + "868f0f13-cd1f-42b2-8d7b-11d17af5ab67" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173900Z:868f0f13-cd1f-42b2-8d7b-11d17af5ab67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:38:59 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "6274041e-b568-4330-aba3-e6638a9ae32e" + ], + "x-ms-correlation-request-id": [ + "6274041e-b568-4330-aba3-e6638a9ae32e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173900Z:6274041e-b568-4330-aba3-e6638a9ae32e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "a8f14d6b-c06f-434c-aefd-52b60aadddfd" + ], + "x-ms-correlation-request-id": [ + "a8f14d6b-c06f-434c-aefd-52b60aadddfd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173901Z:a8f14d6b-c06f-434c-aefd-52b60aadddfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "324d6b72-4efd-48a4-b047-f797835cac0e" + ], + "x-ms-correlation-request-id": [ + "324d6b72-4efd-48a4-b047-f797835cac0e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173902Z:324d6b72-4efd-48a4-b047-f797835cac0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "1db3fd25-33ea-49a0-b8b4-8fe077d159de" + ], + "x-ms-correlation-request-id": [ + "1db3fd25-33ea-49a0-b8b4-8fe077d159de" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173903Z:1db3fd25-33ea-49a0-b8b4-8fe077d159de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "4d248cef-e125-4acd-a00b-3a8e25d3da6e" + ], + "x-ms-correlation-request-id": [ + "4d248cef-e125-4acd-a00b-3a8e25d3da6e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173903Z:4d248cef-e125-4acd-a00b-3a8e25d3da6e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:03 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "323b6785-1585-4b33-a8c3-252409440587" + ], + "x-ms-correlation-request-id": [ + "323b6785-1585-4b33-a8c3-252409440587" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173904Z:323b6785-1585-4b33-a8c3-252409440587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:04 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "b019f419-08dd-4c6b-9e45-b071b27469e3" + ], + "x-ms-correlation-request-id": [ + "b019f419-08dd-4c6b-9e45-b071b27469e3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173905Z:b019f419-08dd-4c6b-9e45-b071b27469e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" + ], + "x-ms-correlation-request-id": [ + "b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173906Z:b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:05 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "0f02f687-6912-4bdb-b7fd-a6b99ac4a077" + ], + "x-ms-correlation-request-id": [ + "0f02f687-6912-4bdb-b7fd-a6b99ac4a077" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173906Z:0f02f687-6912-4bdb-b7fd-a6b99ac4a077" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:06 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "fdb83b7e-a476-4914-9566-7edad5168ae0" + ], + "x-ms-correlation-request-id": [ + "fdb83b7e-a476-4914-9566-7edad5168ae0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173907Z:fdb83b7e-a476-4914-9566-7edad5168ae0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + ], + "x-ms-correlation-request-id": [ + "4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:07 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + ], + "x-ms-correlation-request-id": [ + "b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173908Z:b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "1cb872ba-4b07-472d-88e6-7598f022265d" + ], + "x-ms-correlation-request-id": [ + "1cb872ba-4b07-472d-88e6-7598f022265d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173909Z:1cb872ba-4b07-472d-88e6-7598f022265d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:09 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "94fc8158-ac30-410f-8f16-3e44e62fcb69" + ], + "x-ms-correlation-request-id": [ + "94fc8158-ac30-410f-8f16-3e44e62fcb69" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173910Z:94fc8158-ac30-410f-8f16-3e44e62fcb69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:10 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + ], + "x-ms-correlation-request-id": [ + "b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-request-id": [ + "2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + ], + "x-ms-correlation-request-id": [ + "2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173911Z:2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:11 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-request-id": [ + "50c52227-cee3-42a7-99be-045bd31eb30a" + ], + "x-ms-correlation-request-id": [ + "50c52227-cee3-42a7-99be-045bd31eb30a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173912Z:50c52227-cee3-42a7-99be-045bd31eb30a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:12 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-request-id": [ + "5d2e569e-769d-496a-8247-d54fbe868073" + ], + "x-ms-correlation-request-id": [ + "5d2e569e-769d-496a-8247-d54fbe868073" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173913Z:5d2e569e-769d-496a-8247-d54fbe868073" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:13 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-request-id": [ + "9a841b56-643b-487e-a9cb-63a730b4e550" + ], + "x-ms-correlation-request-id": [ + "9a841b56-643b-487e-a9cb-63a730b4e550" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:9a841b56-643b-487e-a9cb-63a730b4e550" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-request-id": [ + "816675f1-cc0a-4485-bef3-09c77dfbe660" + ], + "x-ms-correlation-request-id": [ + "816675f1-cc0a-4485-bef3-09c77dfbe660" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173914Z:816675f1-cc0a-4485-bef3-09c77dfbe660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:14 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-request-id": [ + "5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + ], + "x-ms-correlation-request-id": [ + "5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173915Z:5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11869" + ], + "x-ms-request-id": [ + "882de0f3-309f-487e-8479-e3f15a1fcb43" + ], + "x-ms-correlation-request-id": [ + "882de0f3-309f-487e-8479-e3f15a1fcb43" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173916Z:882de0f3-309f-487e-8479-e3f15a1fcb43" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11865" + ], + "x-ms-request-id": [ + "81bae6d0-1970-4af5-95c8-c7386074c9ce" + ], + "x-ms-correlation-request-id": [ + "81bae6d0-1970-4af5-95c8-c7386074c9ce" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:81bae6d0-1970-4af5-95c8-c7386074c9ce" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11861" + ], + "x-ms-request-id": [ + "7467ae13-5fcf-45c6-b366-e46cf8243b6d" + ], + "x-ms-correlation-request-id": [ + "7467ae13-5fcf-45c6-b366-e46cf8243b6d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173917Z:7467ae13-5fcf-45c6-b366-e46cf8243b6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11857" + ], + "x-ms-request-id": [ + "97581177-2d17-4292-9139-c070cc787679" + ], + "x-ms-correlation-request-id": [ + "97581177-2d17-4292-9139-c070cc787679" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173918Z:97581177-2d17-4292-9139-c070cc787679" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:18 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11853" + ], + "x-ms-request-id": [ + "c7dfb573-c426-45dc-b046-08cb4ece7519" + ], + "x-ms-correlation-request-id": [ + "c7dfb573-c426-45dc-b046-08cb4ece7519" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173919Z:c7dfb573-c426-45dc-b046-08cb4ece7519" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11849" + ], + "x-ms-request-id": [ + "7bb808b1-2e2f-4808-a828-62497ffc5854" + ], + "x-ms-correlation-request-id": [ + "7bb808b1-2e2f-4808-a828-62497ffc5854" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173920Z:7bb808b1-2e2f-4808-a828-62497ffc5854" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "785" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11845" + ], + "x-ms-request-id": [ + "0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + ], + "x-ms-correlation-request-id": [ + "0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173920Z:0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "781" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:20.5714802Z\",\r\n \"duration\": \"PT24.9953624S\",\r\n \"trackingId\": \"bf7ce063-1027-4452-b59e-138e2ef530a1\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11841" + ], + "x-ms-request-id": [ + "4c8ae20d-778d-4cb3-be76-18badd2a1121" + ], + "x-ms-correlation-request-id": [ + "4c8ae20d-778d-4cb3-be76-18badd2a1121" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173921Z:4c8ae20d-778d-4cb3-be76-18badd2a1121" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "782" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11837" + ], + "x-ms-request-id": [ + "58c6a9f4-6fe3-4086-bfd1-d0262715279d" + ], + "x-ms-correlation-request-id": [ + "58c6a9f4-6fe3-4086-bfd1-d0262715279d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173922Z:58c6a9f4-6fe3-4086-bfd1-d0262715279d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11833" + ], + "x-ms-request-id": [ + "af98b640-7237-4ef2-8f28-f7a878cea5f5" + ], + "x-ms-correlation-request-id": [ + "af98b640-7237-4ef2-8f28-f7a878cea5f5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:af98b640-7237-4ef2-8f28-f7a878cea5f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ece6e963-7175-404b-8747-be71dc6928f6" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11829" + ], + "x-ms-request-id": [ + "9e91c425-e7d3-4dbc-97bb-e729c633219a" + ], + "x-ms-correlation-request-id": [ + "9e91c425-e7d3-4dbc-97bb-e729c633219a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173923Z:9e91c425-e7d3-4dbc-97bb-e729c633219a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d327d2da-0597-4454-a22f-95640dc42fd6" + ], + "x-ms-correlation-request-id": [ + "d327d2da-0597-4454-a22f-95640dc42fd6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173925Z:d327d2da-0597-4454-a22f-95640dc42fd6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + ], + "x-ms-correlation-request-id": [ + "f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173940Z:f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + ], + "x-ms-correlation-request-id": [ + "0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T173955Z:0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:39:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + ], + "x-ms-correlation-request-id": [ + "3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174010Z:3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:40:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + ], + "x-ms-correlation-request-id": [ + "157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174025Z:157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:40:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "c6877737-76e5-4e46-a60e-435206512b60" + ], + "x-ms-correlation-request-id": [ + "c6877737-76e5-4e46-a60e-435206512b60" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174041Z:c6877737-76e5-4e46-a60e-435206512b60" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:40:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "75eb1982-ac33-4a75-b312-fccb579f9d5b" + ], + "x-ms-correlation-request-id": [ + "75eb1982-ac33-4a75-b312-fccb579f9d5b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174056Z:75eb1982-ac33-4a75-b312-fccb579f9d5b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:40:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "5bc693e8-15a9-410a-b036-1aa0737c17d5" + ], + "x-ms-correlation-request-id": [ + "5bc693e8-15a9-410a-b036-1aa0737c17d5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174111Z:5bc693e8-15a9-410a-b036-1aa0737c17d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:41:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "08df173e-2463-451b-8d86-e01b19d10ccf" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "40cbcb27-8826-4423-a737-e42de494f117" + ], + "x-ms-correlation-request-id": [ + "40cbcb27-8826-4423-a737-e42de494f117" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T174111Z:40cbcb27-8826-4423-a737-e42de494f117" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 17:41:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewSubscriptionDeploymentFromTemplateSpec": [ + "ps2758", + "ps4675" + ] + }, + "Variables": { + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewTenantDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewTenantDeploymentTemplateSpec.json new file mode 100644 index 000000000000..b77c69a61c27 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewTenantDeploymentTemplateSpec.json @@ -0,0 +1,1708 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps6347?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzNjM0Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6f09903-1897-4efc-8dc2-fe261fd49a3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "95a64a8e-1a84-4705-8710-b673e2722926" + ], + "x-ms-correlation-request-id": [ + "95a64a8e-1a84-4705-8710-b673e2722926" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200946Z:95a64a8e-1a84-4705-8710-b673e2722926" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:45 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps6347?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzNjM0Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "566ffcf8-9294-45b4-a53c-4c03417575dc" + ], + "x-ms-correlation-request-id": [ + "566ffcf8-9294-45b4-a53c-4c03417575dc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200952Z:566ffcf8-9294-45b4-a53c-4c03417575dc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps6347?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzNjM0Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e6f09903-1897-4efc-8dc2-fe261fd49a3c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "ec458568-1619-4491-9b0c-9ac916608b05" + ], + "x-ms-correlation-request-id": [ + "ec458568-1619-4491-9b0c-9ac916608b05" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200946Z:ec458568-1619-4491-9b0c-9ac916608b05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:46 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347\",\r\n \"name\": \"ps6347\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzL3ZlcnNpb25zL3YxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45296bb1-3cb9-4ff9-8663-55bccbaba2ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "10f48e57-4d1e-4fcc-a2dc-6402debc0942" + ], + "x-ms-correlation-request-id": [ + "10f48e57-4d1e-4fcc-a2dc-6402debc0942" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200947Z:10f48e57-4d1e-4fcc-a2dc-6402debc0942" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "229" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps423/versions/v1' under resource group 'ps6347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzL3ZlcnNpb25zL3YxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45296bb1-3cb9-4ff9-8663-55bccbaba2ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "4c0bc740-7185-45f7-b219-052937bc33bd" + ], + "x-ms-correlation-request-id": [ + "4c0bc740-7185-45f7-b219-052937bc33bd" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200949Z:4c0bc740-7185-45f7-b219-052937bc33bd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "229" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps423/versions/v1' under resource group 'ps6347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzL3ZlcnNpb25zL3YxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "39de8c60-f700-450e-81e2-6b065c077e6e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "94ba4814-355e-4540-b8c1-c1398e8359f9" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c04fd75b-7c30-4841-88b6-2d6b5ca7dd38" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200950Z:c04fd75b-7c30-4841-88b6-2d6b5ca7dd38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:49 GMT" + ], + "Content-Length": [ + "1404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T20:09:49.4332849Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T20:09:49.4332849Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45296bb1-3cb9-4ff9-8663-55bccbaba2ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "93914591-0806-4259-9968-d0dd259e7b77" + ], + "x-ms-correlation-request-id": [ + "93914591-0806-4259-9968-d0dd259e7b77" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200947Z:93914591-0806-4259-9968-d0dd259e7b77" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "217" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps423' under resource group 'ps6347' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45296bb1-3cb9-4ff9-8663-55bccbaba2ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2941ded-29ab-4cac-b0c2-25377fb1941d" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "2ba856c3-815d-4625-8d77-36d5598f3bd0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200948Z:2ba856c3-815d-4625-8d77-36d5598f3bd0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:48 GMT" + ], + "Content-Length": [ + "585" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T20:09:48.4382843Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T20:09:48.4382843Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps423\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzNjM0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDIzL3ZlcnNpb25zL3YxP2FwaS12ZXJzaW9uPTIwMTktMDYtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45296bb1-3cb9-4ff9-8663-55bccbaba2ab" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "853" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "90f9b4ec-4d84-483f-a565-0667f7144a99" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "0ecfeab2-cdf6-4fcf-897f-af8201e88226" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200949Z:0ecfeab2-cdf6-4fcf-897f-af8201e88226" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:49 GMT" + ], + "Content-Length": [ + "1404" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T20:09:49.4332849Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T20:09:49.4332849Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "393" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "f86caaf3-7566-4853-8605-1bc29f8fc26a" + ], + "x-ms-correlation-request-id": [ + "f86caaf3-7566-4853-8605-1bc29f8fc26a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200950Z:f86caaf3-7566-4853-8605-1bc29f8fc26a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:50 GMT" + ], + "Content-Length": [ + "691" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/ps423\",\r\n \"name\": \"ps423\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T20:09:50.7488048Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"f86caaf3-7566-4853-8605-1bc29f8fc26a\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "393" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/providers/Microsoft.Resources/deployments/ps423/operationStatuses/08585886190945224791?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-request-id": [ + "8aa9fa2f-e839-4e35-b2b8-f6668245ac81" + ], + "x-ms-correlation-request-id": [ + "8aa9fa2f-e839-4e35-b2b8-f6668245ac81" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200951Z:8aa9fa2f-e839-4e35-b2b8-f6668245ac81" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Length": [ + "674" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/ps423\",\r\n \"name\": \"ps423\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T20:09:51.4691666Z\",\r\n \"duration\": \"PT0.5140335S\",\r\n \"correlationId\": \"8aa9fa2f-e839-4e35-b2b8-f6668245ac81\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "b3883b90-a401-4922-9ba6-f3a3a72e44ae" + ], + "x-ms-correlation-request-id": [ + "b3883b90-a401-4922-9ba6-f3a3a72e44ae" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200951Z:b3883b90-a401-4922-9ba6-f3a3a72e44ae" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "4a7f1842-293d-445e-8f3a-8fe1c51996a2" + ], + "x-ms-correlation-request-id": [ + "4a7f1842-293d-445e-8f3a-8fe1c51996a2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200952Z:4a7f1842-293d-445e-8f3a-8fe1c51996a2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "375" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Resources/deployments/ps423/operations/08585886190945224791\",\r\n \"operationId\": \"08585886190945224791\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T20:09:52.0152352Z\",\r\n \"duration\": \"PT0.0325841S\",\r\n \"trackingId\": \"10794d8c-43be-481f-9878-9f4e711cff24\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "7f8d4cc4-ae8c-4fb9-b3c9-46ec2fe35708" + ], + "x-ms-correlation-request-id": [ + "7f8d4cc4-ae8c-4fb9-b3c9-46ec2fe35708" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200952Z:7f8d4cc4-ae8c-4fb9-b3c9-46ec2fe35708" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "673" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/ps423\",\r\n \"name\": \"ps423\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T20:09:51.8817387Z\",\r\n \"duration\": \"PT0.9266056S\",\r\n \"correlationId\": \"8aa9fa2f-e839-4e35-b2b8-f6668245ac81\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "633fe0e8-9112-47c8-a5f9-58cc2eaf5354" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11995" + ], + "x-ms-request-id": [ + "4b3031d9-b8a8-401f-81bc-9e61ac81b5a8" + ], + "x-ms-correlation-request-id": [ + "4b3031d9-b8a8-401f-81bc-9e61ac81b5a8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200952Z:4b3031d9-b8a8-401f-81bc-9e61ac81b5a8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "784" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Resources/deployments/ps423\",\r\n \"name\": \"ps423\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps6347/providers/Microsoft.Resources/templateSpecs/ps423/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T20:09:52.0377587Z\",\r\n \"duration\": \"PT1.0826256S\",\r\n \"correlationId\": \"8aa9fa2f-e839-4e35-b2b8-f6668245ac81\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps6347?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzNjM0Nz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "42b3545b-b81b-4d6a-b98d-fe7112ca31f4" + ], + "x-ms-correlation-request-id": [ + "42b3545b-b81b-4d6a-b98d-fe7112ca31f4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T200953Z:42b3545b-b81b-4d6a-b98d-fe7112ca31f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:09:52 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "c44fc8dd-8b1f-4aee-8ed5-cbc230e6e7ab" + ], + "x-ms-correlation-request-id": [ + "c44fc8dd-8b1f-4aee-8ed5-cbc230e6e7ab" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201008Z:c44fc8dd-8b1f-4aee-8ed5-cbc230e6e7ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:10:07 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "81c11235-2980-4ac3-935a-f825e90647f4" + ], + "x-ms-correlation-request-id": [ + "81c11235-2980-4ac3-935a-f825e90647f4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201023Z:81c11235-2980-4ac3-935a-f825e90647f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:10:22 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "392b573c-2de2-45fa-8878-879a6f786c45" + ], + "x-ms-correlation-request-id": [ + "392b573c-2de2-45fa-8878-879a6f786c45" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201038Z:392b573c-2de2-45fa-8878-879a6f786c45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:10:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "612ee572-c3b6-4757-8fb9-225392acfa12" + ], + "x-ms-correlation-request-id": [ + "612ee572-c3b6-4757-8fb9-225392acfa12" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201054Z:612ee572-c3b6-4757-8fb9-225392acfa12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:10:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "786bcac2-6367-4618-b5b3-04e6d90dc158" + ], + "x-ms-correlation-request-id": [ + "786bcac2-6367-4618-b5b3-04e6d90dc158" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201109Z:786bcac2-6367-4618-b5b3-04e6d90dc158" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "22c33a51-3f80-4bdd-8bec-ac6be3f3034d" + ], + "x-ms-correlation-request-id": [ + "22c33a51-3f80-4bdd-8bec-ac6be3f3034d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201124Z:22c33a51-3f80-4bdd-8bec-ac6be3f3034d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYzNDctV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZek5EY3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "55ac4983-8ff1-479f-b024-a14840cbb332" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "11d1bfb0-a602-424e-888b-30b91b11e06d" + ], + "x-ms-correlation-request-id": [ + "11d1bfb0-a602-424e-888b-30b91b11e06d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201124Z:11d1bfb0-a602-424e-888b-30b91b11e06d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f31f31c3-0385-4c74-a2f9-c6dd1f453c3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "70096a07-970e-45fa-95c3-1f2e7276b21e" + ], + "x-ms-correlation-request-id": [ + "70096a07-970e-45fa-95c3-1f2e7276b21e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201124Z:70096a07-970e-45fa-95c3-1f2e7276b21e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:24 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/providers/Microsoft.Resources/deployments/ps423?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDIzP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f31f31c3-0385-4c74-a2f9-c6dd1f453c3f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLS1QUzQyMy0iLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "26c91df3-0f5c-4a57-b77e-8f2b93242966" + ], + "x-ms-correlation-request-id": [ + "26c91df3-0f5c-4a57-b77e-8f2b93242966" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201125Z:26c91df3-0f5c-4a57-b77e-8f2b93242966" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLS1QUzQyMy0iLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFMxUVV6UXlNeTBpTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f31f31c3-0385-4c74-a2f9-c6dd1f453c3f" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "95b99551-93b9-45db-be15-d37615a5958e" + ], + "x-ms-correlation-request-id": [ + "95b99551-93b9-45db-be15-d37615a5958e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201140Z:95b99551-93b9-45db-be15-d37615a5958e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:40 GMT" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLS1QUzQyMy0iLCJqb2JMb2NhdGlvbiI6Indlc3R1czIifQ?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFMxUVV6UXlNeTBpTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN6SWlmUT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f31f31c3-0385-4c74-a2f9-c6dd1f453c3f" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11996" + ], + "x-ms-request-id": [ + "b14d1cb3-373a-414e-948a-5345d164875c" + ], + "x-ms-correlation-request-id": [ + "b14d1cb3-373a-414e-948a-5345d164875c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210210T201140Z:b14d1cb3-373a-414e-948a-5345d164875c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Wed, 10 Feb 2021 20:11:40 GMT" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + } + ], + "Names": { + "Test-NewTenantDeploymentFromTemplateSpec": [ + "ps6347", + "ps423" + ] + }, + "Variables": { + "SubscriptionId": "ce7f58b7-53c8-4806-ad09-18b516f85d4a" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/simpleTemplate.json b/src/Resources/Resources.Test/simpleTemplate.json new file mode 100644 index 000000000000..2b428193eee5 --- /dev/null +++ b/src/Resources/Resources.Test/simpleTemplate.json @@ -0,0 +1,33 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": { + "foo": { + "type": "string", + "metadata": { + "description": "description" + } + }, + "bar": { + "type": "string", + "metadata": { + "description": "description" + } + } + }, + "functions": [], + "variables": { + + }, + "resources": [], + "outputs": { + "foo": { + "type": "string", + "value": "[parameters('foo')]" + }, + "bar": { + "type": "string", + "value": "[parameters('bar')]" + } + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/simpleTemplateParams.json b/src/Resources/Resources.Test/simpleTemplateParams.json new file mode 100644 index 000000000000..5a7ba12ad877 --- /dev/null +++ b/src/Resources/Resources.Test/simpleTemplateParams.json @@ -0,0 +1,8 @@ +{ + "foo": { + "value": "abc" + }, + "bar": { + "value": "xyz" + } +} \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 1fc384d3fa5e..b23c26cd3538 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Fixed issues with TemplateSpec deployments in New-AzTenantDeployment and New-AzManagementGroupDeployment * Added support for -QueryString parameter in Test-Az*Deployments cmdlets * Fixed issue with dynamic parameters when New-Az*Deployments is used with -QueryString From 58e2a60c512b4d727823c3be95bf8969f66cc9ce Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Thu, 11 Feb 2021 15:00:32 -0500 Subject: [PATCH 2/3] Review fixes --- .../ScenarioTests/DeploymentTests.cs | 8 + .../ScenarioTests/DeploymentTests.ps1 | 46 +- ...ledSubscriptionDeploymentTemplateSpec.json | 5278 +++++++++++ .../TestNewMGDeploymentTemplateSpec.json | 1210 ++- ...NewSubscriptionDeploymentTemplateSpec.json | 8319 ++--------------- 5 files changed, 7138 insertions(+), 7723 deletions(-) create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewFailedSubscriptionDeploymentTemplateSpec.json diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 5d5c492a302f..d92b324d477a 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -63,6 +63,14 @@ public void TestNewSubscriptionDeploymentTemplateSpec() TestRunner.RunTestScript("Test-NewSubscriptionDeploymentFromTemplateSpec"); } + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + [Trait(Category.RunType, Category.CoreOnly)] + public void TestNewFailedSubscriptionDeploymentTemplateSpec() + { + TestRunner.RunTestScript("Test-NewFailedSubscriptionDeploymentFromTemplateSpec"); + } + [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] [Trait(Category.RunType, Category.CoreOnly)] diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 3f7f3ce20704..429edfc9dda0 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -176,6 +176,45 @@ function Test-NewSubscriptionDeploymentFromTemplateSpec finally { # Cleanup + Clean-DeploymentAtSubscription $deployment + Clean-ResourceGroup $rgname + } +} + +function Test-NewFailedSubscriptionDeploymentFromTemplateSpec +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + $subId = (Get-AzContext).Subscription.SubscriptionId + + try + { + # Prepare our RG and basic template spec: + + New-AzResourceGroup -Name $rgname -Location $rglocation + + #Use template that will fail at subscription scope + $sampleTemplateJson = Get-Content -Raw -Path "subscription_level_template.json" + $basicCreatedTemplateSpec = New-AzTemplateSpec -ResourceGroupName $rgname -Name $rname -Location $rgLocation -Version "v1" -TemplateJson $sampleTemplateJson + + $resourceId = $basicCreatedTemplateSpec.Id + "/versions/v1" + + #Create deployment + try { + $deployment = New-AzSubscriptionDeployment -Name $rname -TemplateSpecId $resourceId -TemplateParameterFile "subscription_level_parameters.json" -Location $rglocation + } + Catch { + Assert-True { $Error[0].Contains("ResourceNotFound")} + } + + } + + finally + { + # Cleanup + Clean-DeploymentAtSubscription $deployment Clean-ResourceGroup $rgname } } @@ -185,12 +224,15 @@ function Test-NewMGDeploymentFromTemplateSpec # Setup $rgname = Get-ResourceGroupName $rname = Get-ResourceName - $managementGroupId = "gokultest" + $managementGroupId = Get-ResourceName $rglocation = "West US 2" $subId = (Get-AzContext).Subscription.SubscriptionId try { + #Create New MG + New-AzManagementGroup -GroupName $managementGroupId + # Prepare our RG and basic template spec: New-AzResourceGroup -Name $rgname -Location $rglocation @@ -211,7 +253,9 @@ function Test-NewMGDeploymentFromTemplateSpec finally { # Cleanup + Remove-AzManagementGroupDeployment -ManagementGroup $managementGroupId -Name $rname Clean-ResourceGroup $rgname + Remove-AzManagementGroup -GroupName $managementGroupId } } diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewFailedSubscriptionDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewFailedSubscriptionDeploymentTemplateSpec.json new file mode 100644 index 000000000000..bdddc5f5ea1a --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewFailedSubscriptionDeploymentTemplateSpec.json @@ -0,0 +1,5278 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5f8f44e-f123-44e7-ae7b-05517124c75e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "ab60823c-6030-4862-a6b3-4e5696ea1782" + ], + "x-ms-correlation-request-id": [ + "ab60823c-6030-4862-a6b3-4e5696ea1782" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195120Z:ab60823c-6030-4862-a6b3-4e5696ea1782" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:20 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2f014a9f-4aab-44b8-a11f-ca802442abb6" + ], + "x-ms-correlation-request-id": [ + "2f014a9f-4aab-44b8-a11f-ca802442abb6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195138Z:2f014a9f-4aab-44b8-a11f-ca802442abb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:37 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b5f8f44e-f123-44e7-ae7b-05517124c75e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "91f467b4-a296-4721-b198-4b1221cda2b0" + ], + "x-ms-correlation-request-id": [ + "91f467b4-a296-4721-b198-4b1221cda2b0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195120Z:91f467b4-a296-4721-b198-4b1221cda2b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:20 GMT" + ], + "Content-Length": [ + "281" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632\",\r\n \"name\": \"ps9632\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMi92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7882978-a5d7-4865-91f7-e5cf134ca46e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "b5a16e8d-d300-459e-96bb-84cad0f2b356" + ], + "x-ms-correlation-request-id": [ + "b5a16e8d-d300-459e-96bb-84cad0f2b356" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195121Z:b5a16e8d-d300-459e-96bb-84cad0f2b356" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7432/versions/v1' under resource group 'ps9632' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMi92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7882978-a5d7-4865-91f7-e5cf134ca46e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + ], + "x-ms-correlation-request-id": [ + "198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195122Z:198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "230" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7432/versions/v1' under resource group 'ps9632' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMi92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e86cd540-e58c-48d3-9218-61a35f11bca2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "41c478d0-bb6e-4545-af57-42c1bf478f55" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f39a5612-8aa1-4bff-adbe-51bd1b267019" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195124Z:f39a5612-8aa1-4bff-adbe-51bd1b267019" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:23 GMT" + ], + "Content-Length": [ + "3473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T19:51:23.2544895Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T19:51:23.2544895Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7882978-a5d7-4865-91f7-e5cf134ca46e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-request-id": [ + "7f3b00d1-c3e1-4d17-ba90-947641d6698e" + ], + "x-ms-correlation-request-id": [ + "7f3b00d1-c3e1-4d17-ba90-947641d6698e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195121Z:7f3b00d1-c3e1-4d17-ba90-947641d6698e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "218" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7432' under resource group 'ps9632' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7882978-a5d7-4865-91f7-e5cf134ca46e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7d710cbd-32e2-4e63-8250-528eb8af0d91" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "5f92d419-4c23-49b6-b1f8-8d95b465c1d6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195122Z:5f92d419-4c23-49b6-b1f8-8d95b465c1d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:21 GMT" + ], + "Content-Length": [ + "587" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T19:51:22.3094792Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T19:51:22.3094792Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps7432\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTYzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzQzMi92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d7882978-a5d7-4865-91f7-e5cf134ca46e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2921" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "232a61a3-fa8c-4136-bd2e-9aed43b6132e" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "36a4ff8e-3df1-48e0-ae92-a2295e5b7d96" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195123Z:36a4ff8e-3df1-48e0-ae92-a2295e5b7d96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:22 GMT" + ], + "Content-Length": [ + "3473" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T19:51:23.2544895Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T19:51:23.2544895Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "373" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "eac87c29-3479-4a12-94ac-3f84913ba7b6" + ], + "x-ms-correlation-request-id": [ + "eac87c29-3479-4a12-94ac-3f84913ba7b6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195125Z:eac87c29-3479-4a12-94ac-3f84913ba7b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:25 GMT" + ], + "Content-Length": [ + "2783" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:24.9505531Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"eac87c29-3479-4a12-94ac-3f84913ba7b6\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "373" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operationStatuses/08585885337995333305?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + ], + "x-ms-correlation-request-id": [ + "cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195126Z:cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:26 GMT" + ], + "Content-Length": [ + "2081" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-11T19:51:26.5935706Z\",\r\n \"duration\": \"PT0.6492693S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "3ab12ec1-6899-46bb-acb5-13d37bdc9355" + ], + "x-ms-correlation-request-id": [ + "3ab12ec1-6899-46bb-acb5-13d37bdc9355" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:3ab12ec1-6899-46bb-acb5-13d37bdc9355" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "bbca3514-5664-4e1a-8c3a-d055a4685735" + ], + "x-ms-correlation-request-id": [ + "bbca3514-5664-4e1a-8c3a-d055a4685735" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:bbca3514-5664-4e1a-8c3a-d055a4685735" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + ], + "x-ms-correlation-request-id": [ + "d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "692" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "1fefc70e-6014-4233-9297-d042a3321dc2" + ], + "x-ms-correlation-request-id": [ + "1fefc70e-6014-4233-9297-d042a3321dc2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:1fefc70e-6014-4233-9297-d042a3321dc2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1366" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "28c09c0d-4714-48ed-bf6a-42596f8ecf87" + ], + "x-ms-correlation-request-id": [ + "28c09c0d-4714-48ed-bf6a-42596f8ecf87" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:28c09c0d-4714-48ed-bf6a-42596f8ecf87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2059" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + ], + "x-ms-correlation-request-id": [ + "0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2059" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "b57676c8-7da1-4a0e-a703-02af8f960c76" + ], + "x-ms-correlation-request-id": [ + "b57676c8-7da1-4a0e-a703-02af8f960c76" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:b57676c8-7da1-4a0e-a703-02af8f960c76" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.7152817Z\",\r\n \"duration\": \"PT1.7587687S\",\r\n \"trackingId\": \"23511b62-9240-4fc9-83be-506a32c4355f\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "dc523307-c09a-4a10-8425-31e32a67360f" + ], + "x-ms-correlation-request-id": [ + "dc523307-c09a-4a10-8425-31e32a67360f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195129Z:dc523307-c09a-4a10-8425-31e32a67360f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.7152817Z\",\r\n \"duration\": \"PT1.7587687S\",\r\n \"trackingId\": \"23511b62-9240-4fc9-83be-506a32c4355f\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "040f2bbb-55db-47d9-8339-bf3df85f766b" + ], + "x-ms-correlation-request-id": [ + "040f2bbb-55db-47d9-8339-bf3df85f766b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:040f2bbb-55db-47d9-8339-bf3df85f766b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.7152817Z\",\r\n \"duration\": \"PT1.7587687S\",\r\n \"trackingId\": \"23511b62-9240-4fc9-83be-506a32c4355f\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "784ccb52-cfb1-439e-a66e-816ddcf36de2" + ], + "x-ms-correlation-request-id": [ + "784ccb52-cfb1-439e-a66e-816ddcf36de2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:784ccb52-cfb1-439e-a66e-816ddcf36de2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.7152817Z\",\r\n \"duration\": \"PT1.7587687S\",\r\n \"trackingId\": \"23511b62-9240-4fc9-83be-506a32c4355f\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "452f742f-f554-4541-8e08-abc43660b029" + ], + "x-ms-correlation-request-id": [ + "452f742f-f554-4541-8e08-abc43660b029" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:452f742f-f554-4541-8e08-abc43660b029" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0681218Z\",\r\n \"duration\": \"PT4.1116088S\",\r\n \"trackingId\": \"7db2e763-4845-4461-962c-b00281120832\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "5447615d-2c53-49b5-b9ad-779698c13682" + ], + "x-ms-correlation-request-id": [ + "5447615d-2c53-49b5-b9ad-779698c13682" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:5447615d-2c53-49b5-b9ad-779698c13682" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0681218Z\",\r\n \"duration\": \"PT4.1116088S\",\r\n \"trackingId\": \"7db2e763-4845-4461-962c-b00281120832\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "27bb08b3-f2f4-4f67-9162-bca640cff124" + ], + "x-ms-correlation-request-id": [ + "27bb08b3-f2f4-4f67-9162-bca640cff124" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195133Z:27bb08b3-f2f4-4f67-9162-bca640cff124" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0681218Z\",\r\n \"duration\": \"PT4.1116088S\",\r\n \"trackingId\": \"7db2e763-4845-4461-962c-b00281120832\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "ccdf431a-c434-4fc3-a896-320619bb82f2" + ], + "x-ms-correlation-request-id": [ + "ccdf431a-c434-4fc3-a896-320619bb82f2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195133Z:ccdf431a-c434-4fc3-a896-320619bb82f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0681218Z\",\r\n \"duration\": \"PT4.1116088S\",\r\n \"trackingId\": \"7db2e763-4845-4461-962c-b00281120832\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "5afcab41-709c-4b7d-88e7-437076ae0679" + ], + "x-ms-correlation-request-id": [ + "5afcab41-709c-4b7d-88e7-437076ae0679" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195134Z:5afcab41-709c-4b7d-88e7-437076ae0679" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.2908242Z\",\r\n \"duration\": \"PT7.3343112S\",\r\n \"trackingId\": \"530c5130-7b9f-46c2-9c2c-109682d5f0b5\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "5121b16b-92e5-47de-9091-3644d71f411a" + ], + "x-ms-correlation-request-id": [ + "5121b16b-92e5-47de-9091-3644d71f411a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:5121b16b-92e5-47de-9091-3644d71f411a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.2908242Z\",\r\n \"duration\": \"PT7.3343112S\",\r\n \"trackingId\": \"530c5130-7b9f-46c2-9c2c-109682d5f0b5\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "b2a92369-6610-4e95-bd32-27176df4ab13" + ], + "x-ms-correlation-request-id": [ + "b2a92369-6610-4e95-bd32-27176df4ab13" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:b2a92369-6610-4e95-bd32-27176df4ab13" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.2908242Z\",\r\n \"duration\": \"PT7.3343112S\",\r\n \"trackingId\": \"530c5130-7b9f-46c2-9c2c-109682d5f0b5\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "7fe46f42-35e1-4987-ac1c-1f288d9ebad5" + ], + "x-ms-correlation-request-id": [ + "7fe46f42-35e1-4987-ac1c-1f288d9ebad5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:7fe46f42-35e1-4987-ac1c-1f288d9ebad5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.2908242Z\",\r\n \"duration\": \"PT7.3343112S\",\r\n \"trackingId\": \"530c5130-7b9f-46c2-9c2c-109682d5f0b5\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "8c398df6-c4fc-43bc-9cfd-c4ef023b53f4" + ], + "x-ms-correlation-request-id": [ + "8c398df6-c4fc-43bc-9cfd-c4ef023b53f4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195137Z:8c398df6-c4fc-43bc-9cfd-c4ef023b53f4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2758" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.2908242Z\",\r\n \"duration\": \"PT7.3343112S\",\r\n \"trackingId\": \"530c5130-7b9f-46c2-9c2c-109682d5f0b5\",\r\n \"serviceRequestId\": \"72e463a8-738a-4083-af4c-414d5da99702\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.954049Z\",\r\n \"duration\": \"PT0.997536S\",\r\n \"trackingId\": \"082c8771-f9b3-4c62-aa5e-20655f9410ed\",\r\n \"serviceRequestId\": \"westus2:d3b1b291-c497-4ae6-a6bc-7432e52dee18\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.7463867Z\",\r\n \"duration\": \"PT0.7898737S\",\r\n \"trackingId\": \"f30b110b-6458-4f01-8de2-325c6fac2efa\",\r\n \"serviceRequestId\": \"2dc864e2-b2e1-4dc4-81ee-f1f1a6747ac9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:27.555976Z\",\r\n \"duration\": \"PT0.599463S\",\r\n \"trackingId\": \"b01fc490-31bc-42ce-94fd-f6067308be69\",\r\n \"serviceRequestId\": \"westus2:f98eacba-9be5-4b08-99fc-207cca576a94\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "89fdce16-85e6-467d-84cc-7ff2cf453d0a" + ], + "x-ms-correlation-request-id": [ + "89fdce16-85e6-467d-84cc-7ff2cf453d0a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:89fdce16-85e6-467d-84cc-7ff2cf453d0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:26.8671429Z\",\r\n \"duration\": \"PT0.9228416S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9e211d3a-c663-4ada-8d0b-841402141723" + ], + "x-ms-correlation-request-id": [ + "9e211d3a-c663-4ada-8d0b-841402141723" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:9e211d3a-c663-4ada-8d0b-841402141723" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:26.8671429Z\",\r\n \"duration\": \"PT0.9228416S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "aa56a0b4-23e2-441a-bc62-881dda98ae78" + ], + "x-ms-correlation-request-id": [ + "aa56a0b4-23e2-441a-bc62-881dda98ae78" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195127Z:aa56a0b4-23e2-441a-bc62-881dda98ae78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:26.8671429Z\",\r\n \"duration\": \"PT0.9228416S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "a5204f26-23d3-45ec-b5ae-c90c4ee208ed" + ], + "x-ms-correlation-request-id": [ + "a5204f26-23d3-45ec-b5ae-c90c4ee208ed" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:a5204f26-23d3-45ec-b5ae-c90c4ee208ed" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:26.8671429Z\",\r\n \"duration\": \"PT0.9228416S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "d437056a-a43e-4177-b335-7197f4e64e89" + ], + "x-ms-correlation-request-id": [ + "d437056a-a43e-4177-b335-7197f4e64e89" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:d437056a-a43e-4177-b335-7197f4e64e89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:26.8671429Z\",\r\n \"duration\": \"PT0.9228416S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "582e4568-983e-4c9c-91eb-ee1c740ba170" + ], + "x-ms-correlation-request-id": [ + "582e4568-983e-4c9c-91eb-ee1c740ba170" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195128Z:582e4568-983e-4c9c-91eb-ee1c740ba170" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.6905492Z\",\r\n \"duration\": \"PT2.7462479S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "494288d0-69a3-4ef0-b07f-ac20db7c4cca" + ], + "x-ms-correlation-request-id": [ + "494288d0-69a3-4ef0-b07f-ac20db7c4cca" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195129Z:494288d0-69a3-4ef0-b07f-ac20db7c4cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.6905492Z\",\r\n \"duration\": \"PT2.7462479S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "5e1fc811-1518-4b9f-9600-e673e053751e" + ], + "x-ms-correlation-request-id": [ + "5e1fc811-1518-4b9f-9600-e673e053751e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:5e1fc811-1518-4b9f-9600-e673e053751e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.6905492Z\",\r\n \"duration\": \"PT2.7462479S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "87b3940b-8995-4a27-bf71-90c8a8616197" + ], + "x-ms-correlation-request-id": [ + "87b3940b-8995-4a27-bf71-90c8a8616197" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:87b3940b-8995-4a27-bf71-90c8a8616197" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:28.6905492Z\",\r\n \"duration\": \"PT2.7462479S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "d56cb564-6213-4cde-a57b-39cdab9fc4e4" + ], + "x-ms-correlation-request-id": [ + "d56cb564-6213-4cde-a57b-39cdab9fc4e4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:d56cb564-6213-4cde-a57b-39cdab9fc4e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0329921Z\",\r\n \"duration\": \"PT5.0886908S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "043c3fdf-c4a6-47b7-8cbe-2b8c77ab19c0" + ], + "x-ms-correlation-request-id": [ + "043c3fdf-c4a6-47b7-8cbe-2b8c77ab19c0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:043c3fdf-c4a6-47b7-8cbe-2b8c77ab19c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0329921Z\",\r\n \"duration\": \"PT5.0886908S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "d4e92d8c-9fe3-4fbd-b914-f6a58d80027b" + ], + "x-ms-correlation-request-id": [ + "d4e92d8c-9fe3-4fbd-b914-f6a58d80027b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:d4e92d8c-9fe3-4fbd-b914-f6a58d80027b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0329921Z\",\r\n \"duration\": \"PT5.0886908S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "756d81ab-f897-4090-8e49-f70fccec64b2" + ], + "x-ms-correlation-request-id": [ + "756d81ab-f897-4090-8e49-f70fccec64b2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195133Z:756d81ab-f897-4090-8e49-f70fccec64b2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2080" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:31.0329921Z\",\r\n \"duration\": \"PT5.0886908S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "59ea6736-9b88-4d4b-a3f1-b985241a8740" + ], + "x-ms-correlation-request-id": [ + "59ea6736-9b88-4d4b-a3f1-b985241a8740" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195134Z:59ea6736-9b88-4d4b-a3f1-b985241a8740" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2079" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.264573Z\",\r\n \"duration\": \"PT8.3202717S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "9d043cb2-9837-46fb-a25b-34bb4af5d84f" + ], + "x-ms-correlation-request-id": [ + "9d043cb2-9837-46fb-a25b-34bb4af5d84f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:9d043cb2-9837-46fb-a25b-34bb4af5d84f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2079" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.264573Z\",\r\n \"duration\": \"PT8.3202717S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "215239cb-94e8-440d-9e0d-ea3794d39fd8" + ], + "x-ms-correlation-request-id": [ + "215239cb-94e8-440d-9e0d-ea3794d39fd8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:215239cb-94e8-440d-9e0d-ea3794d39fd8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2079" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.264573Z\",\r\n \"duration\": \"PT8.3202717S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "c35d9166-b95f-4f09-beec-010a0449ae42" + ], + "x-ms-correlation-request-id": [ + "c35d9166-b95f-4f09-beec-010a0449ae42" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:c35d9166-b95f-4f09-beec-010a0449ae42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2079" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.264573Z\",\r\n \"duration\": \"PT8.3202717S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "05eb37cc-0254-4aff-9f7a-1ca19f67e281" + ], + "x-ms-correlation-request-id": [ + "05eb37cc-0254-4aff-9f7a-1ca19f67e281" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195137Z:05eb37cc-0254-4aff-9f7a-1ca19f67e281" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2079" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T19:51:34.264573Z\",\r\n \"duration\": \"PT8.3202717S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "7aac0c8d-c0f7-4801-8718-bdf2fc8b463b" + ], + "x-ms-correlation-request-id": [ + "7aac0c8d-c0f7-4801-8718-bdf2fc8b463b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195138Z:7aac0c8d-c0f7-4801-8718-bdf2fc8b463b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "2629" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432\",\r\n \"name\": \"ps7432\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9632/providers/Microsoft.Resources/templateSpecs/ps7432/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:37.7079957Z\",\r\n \"duration\": \"PT11.7636944S\",\r\n \"correlationId\": \"cc413f44-14e8-4c9e-aeae-9f68d2c6043d\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "d9f84219-7c23-4670-8390-a74673f56887" + ], + "x-ms-correlation-request-id": [ + "d9f84219-7c23-4670-8390-a74673f56887" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195129Z:d9f84219-7c23-4670-8390-a74673f56887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "6a479c9b-39a2-42e5-9be7-331b8738aaf6" + ], + "x-ms-correlation-request-id": [ + "6a479c9b-39a2-42e5-9be7-331b8738aaf6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195129Z:6a479c9b-39a2-42e5-9be7-331b8738aaf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "124836f4-52de-4481-b11d-531bd8ad09c5" + ], + "x-ms-correlation-request-id": [ + "124836f4-52de-4481-b11d-531bd8ad09c5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:124836f4-52de-4481-b11d-531bd8ad09c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "4ca99f44-cf88-4e2e-8124-87f6a7a8d580" + ], + "x-ms-correlation-request-id": [ + "4ca99f44-cf88-4e2e-8124-87f6a7a8d580" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:4ca99f44-cf88-4e2e-8124-87f6a7a8d580" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:30 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "9e1c2925-acd2-456e-9c8b-25afcbf86f3a" + ], + "x-ms-correlation-request-id": [ + "9e1c2925-acd2-456e-9c8b-25afcbf86f3a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:9e1c2925-acd2-456e-9c8b-25afcbf86f3a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "d08ab61b-5628-4179-8e6e-b283d6239bdc" + ], + "x-ms-correlation-request-id": [ + "d08ab61b-5628-4179-8e6e-b283d6239bdc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:d08ab61b-5628-4179-8e6e-b283d6239bdc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "dccdb50b-893a-4f91-9834-0acb35e8519d" + ], + "x-ms-correlation-request-id": [ + "dccdb50b-893a-4f91-9834-0acb35e8519d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195133Z:dccdb50b-893a-4f91-9834-0acb35e8519d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "65d6b6f1-595e-46d9-8180-78ef0915b671" + ], + "x-ms-correlation-request-id": [ + "65d6b6f1-595e-46d9-8180-78ef0915b671" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195134Z:65d6b6f1-595e-46d9-8180-78ef0915b671" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:33 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "392442bd-850f-442e-9f18-7c9cc3369278" + ], + "x-ms-correlation-request-id": [ + "392442bd-850f-442e-9f18-7c9cc3369278" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195134Z:392442bd-850f-442e-9f18-7c9cc3369278" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "37ee7d34-3b53-4dcb-a9aa-6c7faeecaad6" + ], + "x-ms-correlation-request-id": [ + "37ee7d34-3b53-4dcb-a9aa-6c7faeecaad6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:37ee7d34-3b53-4dcb-a9aa-6c7faeecaad6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "d9c3d0e9-9a3d-4b6a-b573-5b02614a51f9" + ], + "x-ms-correlation-request-id": [ + "d9c3d0e9-9a3d-4b6a-b573-5b02614a51f9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:d9c3d0e9-9a3d-4b6a-b573-5b02614a51f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "472b20c1-aece-4255-bfd9-abe140dfc81a" + ], + "x-ms-correlation-request-id": [ + "472b20c1-aece-4255-bfd9-abe140dfc81a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:472b20c1-aece-4255-bfd9-abe140dfc81a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:36 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "db38c3f4-cf99-4e4f-a8f3-9babd72ce061" + ], + "x-ms-correlation-request-id": [ + "db38c3f4-cf99-4e4f-a8f3-9babd72ce061" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195137Z:db38c3f4-cf99-4e4f-a8f3-9babd72ce061" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:37 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "8be90b1e-e38c-4112-83fb-3731f294a7c5" + ], + "x-ms-correlation-request-id": [ + "8be90b1e-e38c-4112-83fb-3731f294a7c5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195129Z:8be90b1e-e38c-4112-83fb-3731f294a7c5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "d7e0f69c-a88a-43d8-9edb-7435233fe5b0" + ], + "x-ms-correlation-request-id": [ + "d7e0f69c-a88a-43d8-9edb-7435233fe5b0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:d7e0f69c-a88a-43d8-9edb-7435233fe5b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "387cb5cd-d5a9-4b33-9920-42b2473162e5" + ], + "x-ms-correlation-request-id": [ + "387cb5cd-d5a9-4b33-9920-42b2473162e5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195130Z:387cb5cd-d5a9-4b33-9920-42b2473162e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "8e181f5e-a456-44f5-abad-6c19fc329845" + ], + "x-ms-correlation-request-id": [ + "8e181f5e-a456-44f5-abad-6c19fc329845" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195131Z:8e181f5e-a456-44f5-abad-6c19fc329845" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "de8c58c2-f106-4fc3-a37c-e1d7d18d44f0" + ], + "x-ms-correlation-request-id": [ + "de8c58c2-f106-4fc3-a37c-e1d7d18d44f0" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:de8c58c2-f106-4fc3-a37c-e1d7d18d44f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "8a21320e-9d01-4b83-ac4b-688085ec858c" + ], + "x-ms-correlation-request-id": [ + "8a21320e-9d01-4b83-ac4b-688085ec858c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195132Z:8a21320e-9d01-4b83-ac4b-688085ec858c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "5eeba5c2-8fae-4416-8c57-1f2af9010ee4" + ], + "x-ms-correlation-request-id": [ + "5eeba5c2-8fae-4416-8c57-1f2af9010ee4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195133Z:5eeba5c2-8fae-4416-8c57-1f2af9010ee4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "782" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "5a3e7102-f1a6-4546-8419-671b3a9c8b22" + ], + "x-ms-correlation-request-id": [ + "5a3e7102-f1a6-4546-8419-671b3a9c8b22" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195134Z:5a3e7102-f1a6-4546-8419-671b3a9c8b22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "3e5ffa57-a745-46c2-833b-4559cc162b18" + ], + "x-ms-correlation-request-id": [ + "3e5ffa57-a745-46c2-833b-4559cc162b18" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:3e5ffa57-a745-46c2-833b-4559cc162b18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "6d46767f-9cf7-476e-9613-ea7de32ffc90" + ], + "x-ms-correlation-request-id": [ + "6d46767f-9cf7-476e-9613-ea7de32ffc90" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195135Z:6d46767f-9cf7-476e-9613-ea7de32ffc90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "5f299980-1e4e-48a6-b967-00fa9fe1a763" + ], + "x-ms-correlation-request-id": [ + "5f299980-1e4e-48a6-b967-00fa9fe1a763" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195136Z:5f299980-1e4e-48a6-b967-00fa9fe1a763" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "b766471f-2ec7-4fee-a288-51ddffc6243f" + ], + "x-ms-correlation-request-id": [ + "b766471f-2ec7-4fee-a288-51ddffc6243f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195137Z:b766471f-2ec7-4fee-a288-51ddffc6243f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "03f92735-5031-4021-b360-d936a52b105b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "eb3f80bf-3de7-4468-b611-dbd71f71b030" + ], + "x-ms-correlation-request-id": [ + "eb3f80bf-3de7-4468-b611-dbd71f71b030" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195137Z:eb3f80bf-3de7-4468-b611-dbd71f71b030" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1248" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:33.3818015Z\",\r\n \"duration\": \"PT3.7547337S\",\r\n \"trackingId\": \"27539c11-7c5b-40ba-bc81-1c1fa9ef9cec\",\r\n \"serviceRequestId\": \"9813db5a-276d-4a2b-88c0-67de91dfbf22\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885337974672472\",\r\n \"operationId\": \"08585885337974672472\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T19:51:34.0905864Z\",\r\n \"duration\": \"PT4.4635186S\",\r\n \"trackingId\": \"7208bfaa-8695-4c96-805f-bf8b8764b201\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14996" + ], + "x-ms-request-id": [ + "82e2e4c3-9926-47a1-8166-996cae72702a" + ], + "x-ms-correlation-request-id": [ + "82e2e4c3-9926-47a1-8166-996cae72702a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195139Z:82e2e4c3-9926-47a1-8166-996cae72702a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "a607b2a0-da76-4c58-8bba-21e91b98a6c4" + ], + "x-ms-correlation-request-id": [ + "a607b2a0-da76-4c58-8bba-21e91b98a6c4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195154Z:a607b2a0-da76-4c58-8bba-21e91b98a6c4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:51:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "8d657132-865a-4222-9f7d-53dd30111a58" + ], + "x-ms-correlation-request-id": [ + "8d657132-865a-4222-9f7d-53dd30111a58" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195209Z:8d657132-865a-4222-9f7d-53dd30111a58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:52:08 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "2a0b29c9-0ae4-42b2-b4a1-d07f97376b8e" + ], + "x-ms-correlation-request-id": [ + "2a0b29c9-0ae4-42b2-b4a1-d07f97376b8e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195224Z:2a0b29c9-0ae4-42b2-b4a1-d07f97376b8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:52:23 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "9083ce33-6468-4f28-aab3-b87a461fdb01" + ], + "x-ms-correlation-request-id": [ + "9083ce33-6468-4f28-aab3-b87a461fdb01" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195239Z:9083ce33-6468-4f28-aab3-b87a461fdb01" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:52:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "fd2a2385-7636-402d-a39a-a59921072273" + ], + "x-ms-correlation-request-id": [ + "fd2a2385-7636-402d-a39a-a59921072273" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195254Z:fd2a2385-7636-402d-a39a-a59921072273" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:52:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "1233c0e8-7034-49e5-a220-793af4af5d8d" + ], + "x-ms-correlation-request-id": [ + "1233c0e8-7034-49e5-a220-793af4af5d8d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195309Z:1233c0e8-7034-49e5-a220-793af4af5d8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:53:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "c288cab2-003b-4212-8edb-3e4917eaacb7" + ], + "x-ms-correlation-request-id": [ + "c288cab2-003b-4212-8edb-3e4917eaacb7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195325Z:c288cab2-003b-4212-8edb-3e4917eaacb7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:53:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzk2MzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprMk16SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "379eaba2-2a37-4e73-a18b-82ef43f7b561" + ], + "x-ms-correlation-request-id": [ + "379eaba2-2a37-4e73-a18b-82ef43f7b561" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T195325Z:379eaba2-2a37-4e73-a18b-82ef43f7b561" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 19:53:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewFailedSubscriptionDeploymentFromTemplateSpec": [ + "ps9632", + "ps7432" + ] + }, + "Variables": { + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json index 91bd2d110486..ca461754966d 100644 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json @@ -1,13 +1,313 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"name\": \"ps2549\",\r\n \"properties\": {\r\n \"details\": {\r\n \"parent\": {}\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa764d32-9395-4f2e-82a6-45cf7286043e" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "westcentralus:fc025bab-b168-43f6-a488-1285b5e714b1" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "fc025bab-b168-43f6-a488-1285b5e714b1" + ], + "request-id": [ + "fc025bab-b168-43f6-a488-1285b5e714b1" + ], + "x-ms-ratelimit-remaining-tenant-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "fc025bab-b168-43f6-a488-1285b5e714b1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T161909Z:fc025bab-b168-43f6-a488-1285b5e714b1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:19:08 GMT" + ], + "Content-Length": [ + "160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa764d32-9395-4f2e-82a6-45cf7286043e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "westcentralus:80c83f40-a0ad-4402-be3f-7580f983cc65" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "80c83f40-a0ad-4402-be3f-7580f983cc65" + ], + "request-id": [ + "80c83f40-a0ad-4402-be3f-7580f983cc65" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "80c83f40-a0ad-4402-be3f-7580f983cc65" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T161920Z:80c83f40-a0ad-4402-be3f-7580f983cc65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:19:19 GMT" + ], + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa764d32-9395-4f2e-82a6-45cf7286043e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "westcentralus:004ada53-cd9f-4eef-9519-40d20ad3f3c7" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + ], + "request-id": [ + "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T161930Z:004ada53-cd9f-4eef-9519-40d20ad3f3c7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:19:30 GMT" + ], + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Running\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fa764d32-9395-4f2e-82a6-45cf7286043e" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11997" + ], + "x-ms-request-id": [ + "westcentralus:c9f51685-4043-4f22-8288-f34eb32b142a" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "c9f51685-4043-4f22-8288-f34eb32b142a" + ], + "request-id": [ + "c9f51685-4043-4f22-8288-f34eb32b142a" + ], + "x-ms-correlation-request-id": [ + "c9f51685-4043-4f22-8288-f34eb32b142a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T161940Z:c9f51685-4043-4f22-8288-f34eb32b142a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:19:40 GMT" + ], + "Content-Length": [ + "551" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"tenantId\": \"6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"displayName\": \"ps2549\",\r\n \"details\": {\r\n \"version\": 1,\r\n \"updatedTime\": \"2021-02-11T16:19:16.2515194Z\",\r\n \"updatedBy\": \"3e2c15b3-905c-4b0f-8313-c48ae01ccdde\",\r\n \"parent\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"name\": \"6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"displayName\": \"Tenant Root Group\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05d22ffa-1c5d-41b6-b6c0-2d2f96009ece" + "b0101ab0-8b3f-4592-a8b3-0189468968a5" ], "Accept-Language": [ "en-US" @@ -30,16 +330,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "08748819-ca35-42f4-b065-35b980a032d9" + "febb1291-1f63-4beb-9562-3af8672f2b5b" ], "x-ms-correlation-request-id": [ - "08748819-ca35-42f4-b065-35b980a032d9" + "febb1291-1f63-4beb-9562-3af8672f2b5b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192818Z:08748819-ca35-42f4-b065-35b980a032d9" + "WESTCENTRALUS:20210211T161941Z:febb1291-1f63-4beb-9562-3af8672f2b5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +348,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:17 GMT" + "Thu, 11 Feb 2021 16:19:41 GMT" ], "Content-Length": [ "98" @@ -67,13 +367,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "Accept-Language": [ "en-US" @@ -93,16 +393,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-request-id": [ - "9356201e-7a5e-4451-8128-ad2cc7f5278e" + "41f8c60f-d927-41f9-bf4e-a4f7c248c94a" ], "x-ms-correlation-request-id": [ - "9356201e-7a5e-4451-8128-ad2cc7f5278e" + "41f8c60f-d927-41f9-bf4e-a4f7c248c94a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192833Z:9356201e-7a5e-4451-8128-ad2cc7f5278e" + "WESTCENTRALUS:20210211T162005Z:41f8c60f-d927-41f9-bf4e-a4f7c248c94a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +411,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:32 GMT" + "Thu, 11 Feb 2021 16:20:05 GMT" ], "Content-Length": [ "0" @@ -127,13 +427,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "05d22ffa-1c5d-41b6-b6c0-2d2f96009ece" + "b0101ab0-8b3f-4592-a8b3-0189468968a5" ], "Accept-Language": [ "en-US" @@ -162,13 +462,13 @@ "1199" ], "x-ms-request-id": [ - "7d176259-d8fc-491f-ac70-c761ab8dd603" + "08069fba-7c82-489c-ba9a-12ecb84c2859" ], "x-ms-correlation-request-id": [ - "7d176259-d8fc-491f-ac70-c761ab8dd603" + "08069fba-7c82-489c-ba9a-12ecb84c2859" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192825Z:7d176259-d8fc-491f-ac70-c761ab8dd603" + "WESTCENTRALUS:20210211T161941Z:08069fba-7c82-489c-ba9a-12ecb84c2859" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,10 +477,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:25 GMT" + "Thu, 11 Feb 2021 16:19:41 GMT" ], "Content-Length": [ - "281" + "210" ], "Content-Type": [ "application/json; charset=utf-8" @@ -192,17 +492,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482\",\r\n \"name\": \"ps7482\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160\",\r\n \"name\": \"ps3160\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be74d0bc-d6fd-4b4a-b861-014bf5571459" + "16d70a33-4204-4b84-ad18-deb55b5fcabc" ], "Accept-Language": [ "en-US" @@ -225,13 +525,13 @@ "gateway" ], "x-ms-request-id": [ - "63ca92b7-4247-4035-9cbd-4c719886c31e" + "2a839da9-2348-489b-a597-837c95578dd4" ], "x-ms-correlation-request-id": [ - "63ca92b7-4247-4035-9cbd-4c719886c31e" + "2a839da9-2348-489b-a597-837c95578dd4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192826Z:63ca92b7-4247-4035-9cbd-4c719886c31e" + "WESTCENTRALUS:20210211T161942Z:2a839da9-2348-489b-a597-837c95578dd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +540,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:25 GMT" + "Thu, 11 Feb 2021 16:19:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,17 +555,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245/versions/v1' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649/versions/v1' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be74d0bc-d6fd-4b4a-b861-014bf5571459" + "16d70a33-4204-4b84-ad18-deb55b5fcabc" ], "Accept-Language": [ "en-US" @@ -288,13 +588,13 @@ "gateway" ], "x-ms-request-id": [ - "7caae0bf-a089-485d-8804-d0a6ca8c20da" + "2ef42222-5de1-4f50-b4cd-03d900df2aa1" ], "x-ms-correlation-request-id": [ - "7caae0bf-a089-485d-8804-d0a6ca8c20da" + "2ef42222-5de1-4f50-b4cd-03d900df2aa1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192827Z:7caae0bf-a089-485d-8804-d0a6ca8c20da" + "WESTCENTRALUS:20210211T161944Z:2ef42222-5de1-4f50-b4cd-03d900df2aa1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +603,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:27 GMT" + "Thu, 11 Feb 2021 16:19:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,17 +618,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245/versions/v1' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649/versions/v1' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31d277fb-6d0b-4fc7-82ad-e3c65fc2a155" + "40c42d98-cb96-43c9-b95f-85ca2d67db7c" ], "Accept-Language": [ "en-US" @@ -348,19 +648,19 @@ "no-cache" ], "x-ms-request-id": [ - "fb49570f-c187-4208-86cd-0b8333c4249d" + "1248d337-432f-43d7-8833-597fddc4f5bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "3884a44e-d828-462c-a0e7-ae0d03765511" + "545a9f88-129d-45e9-800d-f9eb8506656b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192829Z:3884a44e-d828-462c-a0e7-ae0d03765511" + "WESTCENTRALUS:20210211T161945Z:545a9f88-129d-45e9-800d-f9eb8506656b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +669,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:28 GMT" + "Thu, 11 Feb 2021 16:19:44 GMT" ], "Content-Length": [ "1405" @@ -384,17 +684,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:28.3874775Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:28.3874775Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:44.5697272Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:44.5697272Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be74d0bc-d6fd-4b4a-b861-014bf5571459" + "16d70a33-4204-4b84-ad18-deb55b5fcabc" ], "Accept-Language": [ "en-US" @@ -417,13 +717,13 @@ "gateway" ], "x-ms-request-id": [ - "4b751e8f-e5ce-42b0-af97-93230627667c" + "44902589-68ef-479e-9da8-c98d9daa6ac7" ], "x-ms-correlation-request-id": [ - "4b751e8f-e5ce-42b0-af97-93230627667c" + "44902589-68ef-479e-9da8-c98d9daa6ac7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192826Z:4b751e8f-e5ce-42b0-af97-93230627667c" + "WESTCENTRALUS:20210211T161942Z:44902589-68ef-479e-9da8-c98d9daa6ac7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +732,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:26 GMT" + "Thu, 11 Feb 2021 16:19:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,17 +747,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps9245' under resource group 'ps7482' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "be74d0bc-d6fd-4b4a-b861-014bf5571459" + "16d70a33-4204-4b84-ad18-deb55b5fcabc" ], "Accept-Language": [ "en-US" @@ -483,7 +783,7 @@ "no-cache" ], "x-ms-request-id": [ - "081412c4-aa70-4f95-b462-432a165d7dc2" + "db7349dc-edaa-4aa6-abb8-13cfa8175a3d" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -492,10 +792,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "a4e5461d-6fa9-45ad-8a2c-05e67e67bd32" + "c911228a-c514-478d-b835-b98eda33f12f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192827Z:a4e5461d-6fa9-45ad-8a2c-05e67e67bd32" + "WESTCENTRALUS:20210211T161943Z:c911228a-c514-478d-b835-b98eda33f12f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +804,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:27 GMT" + "Thu, 11 Feb 2021 16:19:43 GMT" ], "Content-Length": [ "587" @@ -519,17 +819,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:27.3324555Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:27.3324555Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps9245\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:43.5445951Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:43.5445951Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps3649\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNzQ4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzOTI0NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "be74d0bc-d6fd-4b4a-b861-014bf5571459" + "16d70a33-4204-4b84-ad18-deb55b5fcabc" ], "Accept-Language": [ "en-US" @@ -555,7 +855,7 @@ "no-cache" ], "x-ms-request-id": [ - "df81b0c6-453c-40d0-a68e-290cabdb23e3" + "a07595f9-9a13-4233-908b-bea87014bbd7" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,10 +864,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "6920ce56-3bfe-49b2-85ce-eb48455bd333" + "b7de3298-d5d7-4ce8-9ec6-9459a3465890" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192828Z:6920ce56-3bfe-49b2-85ce-eb48455bd333" + "WESTCENTRALUS:20210211T161944Z:b7de3298-d5d7-4ce8-9ec6-9459a3465890" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,7 +876,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:28 GMT" + "Thu, 11 Feb 2021 16:19:44 GMT" ], "Content-Length": [ "1405" @@ -591,17 +891,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T19:28:28.3874775Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T19:28:28.3874775Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:44.5697272Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:44.5697272Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/validate?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -630,13 +930,13 @@ "1199" ], "x-ms-request-id": [ - "518bc284-e60e-4ae6-8e68-d8f263b058fb" + "76dcfbd8-bfa9-4a11-a404-21c38661db70" ], "x-ms-correlation-request-id": [ - "518bc284-e60e-4ae6-8e68-d8f263b058fb" + "76dcfbd8-bfa9-4a11-a404-21c38661db70" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192830Z:518bc284-e60e-4ae6-8e68-d8f263b058fb" + "WESTCENTRALUS:20210211T161946Z:76dcfbd8-bfa9-4a11-a404-21c38661db70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,10 +945,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:29 GMT" + "Thu, 11 Feb 2021 16:19:45 GMT" ], "Content-Length": [ - "752" + "749" ], "Content-Type": [ "application/json; charset=utf-8" @@ -660,17 +960,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:30.0801918Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"518bc284-e60e-4ae6-8e68-d8f263b058fb\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:46.1241094Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"76dcfbd8-bfa9-4a11-a404-21c38661db70\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -696,19 +996,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operationStatuses/08585886215750226476?api-version=2020-10-01" + "https://management.azure.com/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operationStatuses/08585885464990716340?api-version=2020-10-01" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + "ac063935-a07c-44f7-9d24-3ed7d3ee15f9" ], "x-ms-correlation-request-id": [ - "6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + "ac063935-a07c-44f7-9d24-3ed7d3ee15f9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192831Z:6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd" + "WESTCENTRALUS:20210211T161947Z:ac063935-a07c-44f7-9d24-3ed7d3ee15f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,10 +1017,10 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:30 GMT" + "Thu, 11 Feb 2021 16:19:46 GMT" ], "Content-Length": [ - "735" + "732" ], "Content-Type": [ "application/json; charset=utf-8" @@ -732,17 +1032,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T19:28:31.1497894Z\",\r\n \"duration\": \"PT0.6948336S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-11T16:19:46.9037747Z\",\r\n \"duration\": \"PT0.4977943S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -762,16 +1062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "c3319e09-b218-4cbf-8300-27028a8c8b80" + "dc18fb6d-b3cf-4512-b01b-75a001f52130" ], "x-ms-correlation-request-id": [ - "c3319e09-b218-4cbf-8300-27028a8c8b80" + "dc18fb6d-b3cf-4512-b01b-75a001f52130" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192831Z:c3319e09-b218-4cbf-8300-27028a8c8b80" + "WESTCENTRALUS:20210211T161947Z:dc18fb6d-b3cf-4512-b01b-75a001f52130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,7 +1080,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:30 GMT" + "Thu, 11 Feb 2021 16:19:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,13 +1099,13 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -825,16 +1125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "8a06b836-1665-46c2-8cc1-05fbefaf3817" + "fa661bb0-5794-4bde-8e1e-8bf29ea6d300" ], "x-ms-correlation-request-id": [ - "8a06b836-1665-46c2-8cc1-05fbefaf3817" + "fa661bb0-5794-4bde-8e1e-8bf29ea6d300" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192831Z:8a06b836-1665-46c2-8cc1-05fbefaf3817" + "WESTCENTRALUS:20210211T161947Z:fa661bb0-5794-4bde-8e1e-8bf29ea6d300" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -843,7 +1143,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" + "Thu, 11 Feb 2021 16:19:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,13 +1162,13 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -888,16 +1188,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "daef0056-c61e-424e-8ab7-9cb7992471c9" + "1f1caa8a-5969-4c56-afc3-c39a1b390104" ], "x-ms-correlation-request-id": [ - "daef0056-c61e-424e-8ab7-9cb7992471c9" + "1f1caa8a-5969-4c56-afc3-c39a1b390104" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:daef0056-c61e-424e-8ab7-9cb7992471c9" + "WESTCENTRALUS:20210211T161948Z:1f1caa8a-5969-4c56-afc3-c39a1b390104" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +1206,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" + "Thu, 11 Feb 2021 16:19:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,23 +1215,23 @@ "-1" ], "Content-Length": [ - "12" + "430" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations/08585885464990716340\",\r\n \"operationId\": \"08585885464990716340\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:47.9146291Z\",\r\n \"duration\": \"PT0.035798S\",\r\n \"trackingId\": \"fcf0df03-57e2-4141-84c4-1d7be5edae3e\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -950,17 +1250,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + "cbadc417-2c22-47d3-80d2-65ecd6f06864" ], "x-ms-correlation-request-id": [ - "c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + "cbadc417-2c22-47d3-80d2-65ecd6f06864" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:c16e9cca-a8a8-4a44-a796-e868ab1c4ec7" + "WESTCENTRALUS:20210211T161947Z:cbadc417-2c22-47d3-80d2-65ecd6f06864" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +1272,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" + "Thu, 11 Feb 2021 16:19:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -978,23 +1281,20 @@ "-1" ], "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" + "731" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:19:47.2617629Z\",\r\n \"duration\": \"PT0.8557825S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDUvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -1013,17 +1313,20 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "11991" + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11992" ], "x-ms-request-id": [ - "fde08abc-40b2-4ee9-bcc3-693f650d54b2" + "3215714d-198c-4ae7-982f-de82c52e058f" ], "x-ms-correlation-request-id": [ - "fde08abc-40b2-4ee9-bcc3-693f650d54b2" + "3215714d-198c-4ae7-982f-de82c52e058f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:fde08abc-40b2-4ee9-bcc3-693f650d54b2" + "WESTCENTRALUS:20210211T161947Z:3215714d-198c-4ae7-982f-de82c52e058f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,7 +1335,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:32 GMT" + "Thu, 11 Feb 2021 16:19:47 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,23 +1344,20 @@ "-1" ], "Content-Length": [ - "434" - ], - "Retry-After": [ - "0" + "731" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245/operations/08585886215750226476\",\r\n \"operationId\": \"08585886215750226476\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:32.5640657Z\",\r\n \"duration\": \"PT0.0738511S\",\r\n \"trackingId\": \"4390e13d-f5f9-498e-8801-bffcaeab3660\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:19:47.2617629Z\",\r\n \"duration\": \"PT0.8557825S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" ], "Accept-Language": [ "en-US" @@ -1076,20 +1376,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11990" ], "x-ms-request-id": [ - "0217c5d2-6de8-4389-a307-987551180cbc" + "bffb0d7b-c048-4fd5-9703-06701c2f79ca" ], "x-ms-correlation-request-id": [ - "0217c5d2-6de8-4389-a307-987551180cbc" + "bffb0d7b-c048-4fd5-9703-06701c2f79ca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192831Z:0217c5d2-6de8-4389-a307-987551180cbc" + "WESTCENTRALUS:20210211T161948Z:bffb0d7b-c048-4fd5-9703-06701c2f79ca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1098,7 +1395,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" + "Thu, 11 Feb 2021 16:19:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1107,20 +1404,23 @@ "-1" ], "Content-Length": [ - "735" + "842" + ], + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T19:28:31.1497894Z\",\r\n \"duration\": \"PT0.6948336S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:47.9304537Z\",\r\n \"duration\": \"PT1.5244733S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "46697653-b488-432d-b25f-64b30d64c0ca" ], "Accept-Language": [ "en-US" @@ -1139,20 +1439,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11996" + "11999" ], "x-ms-request-id": [ - "ee67c0be-aa0a-45fe-9c7b-b6954940f871" + "d6185210-d44d-4904-b260-ef17e3463361" ], "x-ms-correlation-request-id": [ - "ee67c0be-aa0a-45fe-9c7b-b6954940f871" + "d6185210-d44d-4904-b260-ef17e3463361" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:ee67c0be-aa0a-45fe-9c7b-b6954940f871" + "WESTCENTRALUS:20210211T161948Z:d6185210-d44d-4904-b260-ef17e3463361" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1161,29 +1458,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" + "Thu, 11 Feb 2021 16:19:48 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "734" + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" + "46697653-b488-432d-b25f-64b30d64c0ca" ], "Accept-Language": [ "en-US" @@ -1202,20 +1499,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + ], "Retry-After": [ "0" ], - "x-ms-ratelimit-remaining-tenant-reads": [ - "11994" + "x-ms-ratelimit-remaining-tenant-deletes": [ + "14999" ], "x-ms-request-id": [ - "208d62a5-601f-4728-ba28-0e161a6b92db" + "43176c75-679d-48a5-bb82-4a8a0969c3a6" ], "x-ms-correlation-request-id": [ - "208d62a5-601f-4728-ba28-0e161a6b92db" + "43176c75-679d-48a5-bb82-4a8a0969c3a6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:208d62a5-601f-4728-ba28-0e161a6b92db" + "WESTCENTRALUS:20210211T161949Z:43176c75-679d-48a5-bb82-4a8a0969c3a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1224,32 +1524,26 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 11 Feb 2021 16:19:49 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "734" + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1qVTBPUzFRVXpNMk5Ea3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" - ], - "Accept-Language": [ - "en-US" + "46697653-b488-432d-b25f-64b30d64c0ca" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1265,20 +1559,17 @@ "Pragma": [ "no-cache" ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "59b5c77d-406f-4503-965c-58e962c0c6ba" + "aa7007e5-3744-4b6f-91d0-54abb95db0c4" ], "x-ms-correlation-request-id": [ - "59b5c77d-406f-4503-965c-58e962c0c6ba" + "aa7007e5-3744-4b6f-91d0-54abb95db0c4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:59b5c77d-406f-4503-965c-58e962c0c6ba" + "WESTCENTRALUS:20210211T162004Z:aa7007e5-3744-4b6f-91d0-54abb95db0c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1287,32 +1578,26 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:31 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 11 Feb 2021 16:20:04 GMT" ], "Expires": [ "-1" ], - "Content-Length": [ - "734" + "Retry-After": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T19:28:31.8365613Z\",\r\n \"duration\": \"PT1.3816055S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL2dva3VsdGVzdC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczkyNDU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1qVTBPUzFRVXpNMk5Ea3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31cc289d-3015-4f94-8a2c-9210432738f8" - ], - "Accept-Language": [ - "en-US" + "46697653-b488-432d-b25f-64b30d64c0ca" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1329,16 +1614,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "f4505041-a82c-444b-8d1b-4572dfd00e98" + "c450d629-6633-47c4-8bd7-c66d6fbd40eb" ], "x-ms-correlation-request-id": [ - "f4505041-a82c-444b-8d1b-4572dfd00e98" + "c450d629-6633-47c4-8bd7-c66d6fbd40eb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192832Z:f4505041-a82c-444b-8d1b-4572dfd00e98" + "WESTCENTRALUS:20210211T162004Z:c450d629-6633-47c4-8bd7-c66d6fbd40eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,32 +1632,26 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:32 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 11 Feb 2021 16:20:04 GMT" ], "Expires": [ "-1" ], - "Content-Length": [ - "845" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/gokultest/providers/Microsoft.Resources/deployments/ps9245\",\r\n \"name\": \"ps9245\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps7482/providers/Microsoft.Resources/templateSpecs/ps9245/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T19:28:32.5789716Z\",\r\n \"duration\": \"PT2.1240158S\",\r\n \"correlationId\": \"6390e6b5-ebc2-47aa-8c9d-7387ea68ebfd\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps7482?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNzQ4Mj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "Accept-Language": [ "en-US" @@ -1392,7 +1671,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1401,13 +1680,13 @@ "14999" ], "x-ms-request-id": [ - "ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + "3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" ], "x-ms-correlation-request-id": [ - "ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + "3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192833Z:ee419f7f-a79b-49c7-a8d1-5bb027f05bc4" + "WESTCENTRALUS:20210211T162006Z:3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,7 +1695,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:28:33 GMT" + "Thu, 11 Feb 2021 16:20:06 GMT" ], "Expires": [ "-1" @@ -1429,13 +1708,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1452,7 +1731,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1461,13 +1740,13 @@ "11996" ], "x-ms-request-id": [ - "5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + "bb07476b-6957-479a-86ab-5893f97d6cde" ], "x-ms-correlation-request-id": [ - "5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + "bb07476b-6957-479a-86ab-5893f97d6cde" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192910Z:5b1067ee-9f9c-4523-8cea-6012d50fd8d8" + "WESTCENTRALUS:20210211T162021Z:bb07476b-6957-479a-86ab-5893f97d6cde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1476,7 +1755,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:29:10 GMT" + "Thu, 11 Feb 2021 16:20:21 GMT" ], "Expires": [ "-1" @@ -1489,13 +1768,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1512,7 +1791,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1521,13 +1800,13 @@ "11995" ], "x-ms-request-id": [ - "959e78e7-c30c-4268-a270-443f0a096254" + "b3404bf8-8fa7-4a00-9632-9d101bf18652" ], "x-ms-correlation-request-id": [ - "959e78e7-c30c-4268-a270-443f0a096254" + "b3404bf8-8fa7-4a00-9632-9d101bf18652" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192925Z:959e78e7-c30c-4268-a270-443f0a096254" + "WESTCENTRALUS:20210211T162036Z:b3404bf8-8fa7-4a00-9632-9d101bf18652" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1815,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:29:25 GMT" + "Thu, 11 Feb 2021 16:20:36 GMT" ], "Expires": [ "-1" @@ -1549,13 +1828,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1572,7 +1851,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1581,13 +1860,13 @@ "11994" ], "x-ms-request-id": [ - "4780576f-9424-459c-ae66-10a88ce67e45" + "ed96ce56-8481-48db-bbb7-5baf7cb488e8" ], "x-ms-correlation-request-id": [ - "4780576f-9424-459c-ae66-10a88ce67e45" + "ed96ce56-8481-48db-bbb7-5baf7cb488e8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192941Z:4780576f-9424-459c-ae66-10a88ce67e45" + "WESTCENTRALUS:20210211T162051Z:ed96ce56-8481-48db-bbb7-5baf7cb488e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1875,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:29:40 GMT" + "Thu, 11 Feb 2021 16:20:51 GMT" ], "Expires": [ "-1" @@ -1609,13 +1888,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1632,7 +1911,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1641,13 +1920,13 @@ "11993" ], "x-ms-request-id": [ - "3f89ac34-3903-480d-8f85-9466da6b81e4" + "619828dd-8fa3-41ae-a898-de67f1068f04" ], "x-ms-correlation-request-id": [ - "3f89ac34-3903-480d-8f85-9466da6b81e4" + "619828dd-8fa3-41ae-a898-de67f1068f04" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T192956Z:3f89ac34-3903-480d-8f85-9466da6b81e4" + "WESTCENTRALUS:20210211T162106Z:619828dd-8fa3-41ae-a898-de67f1068f04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1656,7 +1935,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:29:56 GMT" + "Thu, 11 Feb 2021 16:21:06 GMT" ], "Expires": [ "-1" @@ -1669,13 +1948,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1691,17 +1970,137 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11992" ], "x-ms-request-id": [ - "bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + "a9e21276-4733-4a44-b69c-b01bd30b5f74" + ], + "x-ms-correlation-request-id": [ + "a9e21276-4733-4a44-b69c-b01bd30b5f74" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T162121Z:a9e21276-4733-4a44-b69c-b01bd30b5f74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:21:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "9d97b974-5224-41e7-89bf-778257cdb900" + ], + "x-ms-correlation-request-id": [ + "9d97b974-5224-41e7-89bf-778257cdb900" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T162137Z:9d97b974-5224-41e7-89bf-778257cdb900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:21:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "66cf99ac-56e4-45db-bb52-039913371b35" ], "x-ms-correlation-request-id": [ - "bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + "66cf99ac-56e4-45db-bb52-039913371b35" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T193011Z:bfdfec9b-0380-4b2f-bbe9-bc1e7247f9a4" + "WESTCENTRALUS:20210211T162152Z:66cf99ac-56e4-45db-bb52-039913371b35" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,7 +2109,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:30:11 GMT" + "Thu, 11 Feb 2021 16:21:51 GMT" ], "Expires": [ "-1" @@ -1726,13 +2125,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzc0ODItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpjME9ESXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cfc8c748-c999-475e-ae20-944d74957c3c" + "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1749,16 +2148,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-request-id": [ - "ff20c510-ce88-4c03-ae53-27dd1cee0799" + "28e04d93-755f-4ced-b1ac-0ae60c2bc922" ], "x-ms-correlation-request-id": [ - "ff20c510-ce88-4c03-ae53-27dd1cee0799" + "28e04d93-755f-4ced-b1ac-0ae60c2bc922" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T193011Z:ff20c510-ce88-4c03-ae53-27dd1cee0799" + "WESTCENTRALUS:20210211T162152Z:28e04d93-755f-4ced-b1ac-0ae60c2bc922" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +2166,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 19:30:11 GMT" + "Thu, 11 Feb 2021 16:21:51 GMT" ], "Expires": [ "-1" @@ -1781,15 +2180,238 @@ }, "ResponseBody": "", "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "182da2fa-3410-4602-a68b-de99208689ff" + ], + "Cache-Control": [ + "no-cache" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "westcentralus:312ed484-70ed-46bc-9ff9-6657809d292b" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "312ed484-70ed-46bc-9ff9-6657809d292b" + ], + "request-id": [ + "312ed484-70ed-46bc-9ff9-6657809d292b" + ], + "x-ms-ratelimit-remaining-tenant-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "312ed484-70ed-46bc-9ff9-6657809d292b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T162154Z:312ed484-70ed-46bc-9ff9-6657809d292b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:21:53 GMT" + ], + "Content-Length": [ + "160" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"NotStarted\"\r\n}", + "StatusCode": 202 + }, + { + "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "182da2fa-3410-4602-a68b-de99208689ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11999" + ], + "x-ms-request-id": [ + "westcentralus:12f69433-fc6d-45f6-b214-4126f53d09be" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "12f69433-fc6d-45f6-b214-4126f53d09be" + ], + "request-id": [ + "12f69433-fc6d-45f6-b214-4126f53d09be" + ], + "x-ms-correlation-request-id": [ + "12f69433-fc6d-45f6-b214-4126f53d09be" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T162204Z:12f69433-fc6d-45f6-b214-4126f53d09be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:22:03 GMT" + ], + "Content-Length": [ + "159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "182da2fa-3410-4602-a68b-de99208689ff" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ManagementGroups.ManagementGroupsAPIClient/1.1.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Accept-Encoding" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11998" + ], + "x-ms-request-id": [ + "westcentralus:49cd319a-cc6d-4536-84ec-d460a7f60bbc" + ], + "x-ba-restapi": [ + "1.0.3.1594" + ], + "client-request-id": [ + "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + ], + "request-id": [ + "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + ], + "x-ms-correlation-request-id": [ + "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210211T162204Z:49cd319a-cc6d-4536-84ec-d460a7f60bbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Feb 2021 16:22:03 GMT" + ], + "Content-Length": [ + "159" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\"\r\n}", + "StatusCode": 200 } ], "Names": { "Test-NewMGDeploymentFromTemplateSpec": [ - "ps7482", - "ps9245" + "ps3160", + "ps3649", + "ps2549" ] }, "Variables": { - "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + "SubscriptionId": "ce7f58b7-53c8-4806-ad09-18b516f85d4a" } } \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json index fbdae9ea8a1a..fda24affe51f 100644 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewSubscriptionDeploymentTemplateSpec.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9006?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTAwNj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c9d808c-3921-4f3e-b767-15f6bd024f0e" + "e3e3c967-68a1-4b90-8066-4520a7c676ec" ], "Accept-Language": [ "en-US" @@ -33,13 +33,13 @@ "11999" ], "x-ms-request-id": [ - "9dee2d39-81e4-4d72-8a61-683481ca303b" + "2cdcae37-5c4e-405e-8395-8e76d42ede91" ], "x-ms-correlation-request-id": [ - "9dee2d39-81e4-4d72-8a61-683481ca303b" + "2cdcae37-5c4e-405e-8395-8e76d42ede91" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173844Z:9dee2d39-81e4-4d72-8a61-683481ca303b" + "WESTCENTRALUS:20210211T160827Z:2cdcae37-5c4e-405e-8395-8e76d42ede91" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:43 GMT" + "Thu, 11 Feb 2021 16:08:26 GMT" ], "Content-Length": [ "98" @@ -67,13 +67,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9006?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTAwNj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "11999" ], "x-ms-request-id": [ - "1832727d-8c3d-462e-a0ce-546bb4a651af" + "088bf259-e14e-4e46-ba97-7f98f9e111ad" ], "x-ms-correlation-request-id": [ - "1832727d-8c3d-462e-a0ce-546bb4a651af" + "088bf259-e14e-4e46-ba97-7f98f9e111ad" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173924Z:1832727d-8c3d-462e-a0ce-546bb4a651af" + "WESTCENTRALUS:20210211T160845Z:088bf259-e14e-4e46-ba97-7f98f9e111ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:23 GMT" + "Thu, 11 Feb 2021 16:08:45 GMT" ], "Content-Length": [ "0" @@ -127,13 +127,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9006?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTAwNj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8c9d808c-3921-4f3e-b767-15f6bd024f0e" + "e3e3c967-68a1-4b90-8066-4520a7c676ec" ], "Accept-Language": [ "en-US" @@ -162,13 +162,13 @@ "1199" ], "x-ms-request-id": [ - "9fa0346d-de5e-4034-b136-e5a12e970dfe" + "1db00824-edf6-4d8a-829e-425c8822aff3" ], "x-ms-correlation-request-id": [ - "9fa0346d-de5e-4034-b136-e5a12e970dfe" + "1db00824-edf6-4d8a-829e-425c8822aff3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173845Z:9fa0346d-de5e-4034-b136-e5a12e970dfe" + "WESTCENTRALUS:20210211T160828Z:1db00824-edf6-4d8a-829e-425c8822aff3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:44 GMT" + "Thu, 11 Feb 2021 16:08:27 GMT" ], "Content-Length": [ "281" @@ -192,17 +192,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758\",\r\n \"name\": \"ps2758\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006\",\r\n \"name\": \"ps9006\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ab3e513-95e6-4ef5-9686-499d53d991de" + "0b4ffb1d-8550-4080-bc80-b518f8b95752" ], "Accept-Language": [ "en-US" @@ -225,13 +225,13 @@ "gateway" ], "x-ms-request-id": [ - "c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + "1a3934ca-6eb4-4945-a4d0-fcc0a99f49de" ], "x-ms-correlation-request-id": [ - "c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + "1a3934ca-6eb4-4945-a4d0-fcc0a99f49de" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173846Z:c55bd1aa-5c79-4f06-9e97-9990fb0a35fb" + "WESTCENTRALUS:20210211T160828Z:1a3934ca-6eb4-4945-a4d0-fcc0a99f49de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:46 GMT" + "Thu, 11 Feb 2021 16:08:27 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -255,17 +255,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675/versions/v1' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps6079/versions/v1' under resource group 'ps9006' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ab3e513-95e6-4ef5-9686-499d53d991de" + "0b4ffb1d-8550-4080-bc80-b518f8b95752" ], "Accept-Language": [ "en-US" @@ -288,13 +288,13 @@ "gateway" ], "x-ms-request-id": [ - "8f7443b5-304f-4d11-b0e1-49f07f214c42" + "a30fec5b-49c4-4cef-a387-0bbd3feb2bb5" ], "x-ms-correlation-request-id": [ - "8f7443b5-304f-4d11-b0e1-49f07f214c42" + "a30fec5b-49c4-4cef-a387-0bbd3feb2bb5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173847Z:8f7443b5-304f-4d11-b0e1-49f07f214c42" + "WESTCENTRALUS:20210211T160830Z:a30fec5b-49c4-4cef-a387-0bbd3feb2bb5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:47 GMT" + "Thu, 11 Feb 2021 16:08:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,17 +318,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675/versions/v1' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps6079/versions/v1' under resource group 'ps9006' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c7d54b6-3a7a-4591-be27-9d04bdbcb8b8" + "83e840a2-b339-4fee-9424-01eb5a13b308" ], "Accept-Language": [ "en-US" @@ -348,7 +348,7 @@ "no-cache" ], "x-ms-request-id": [ - "b5b51b33-fda0-4c73-bad9-2dda50144573" + "b679821a-1882-4dde-bb2a-3a4364e7665c" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -357,10 +357,10 @@ "11999" ], "x-ms-correlation-request-id": [ - "f554b45e-9db0-4f88-ace6-411d906e25a2" + "e77f851e-a070-429a-8d70-5da49e3f84e7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173849Z:f554b45e-9db0-4f88-ace6-411d906e25a2" + "WESTCENTRALUS:20210211T160831Z:e77f851e-a070-429a-8d70-5da49e3f84e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -369,7 +369,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:48 GMT" + "Thu, 11 Feb 2021 16:08:30 GMT" ], "Content-Length": [ "3473" @@ -384,17 +384,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:48.7072869Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:48.7072869Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:08:30.6039491Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:08:30.6039491Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ab3e513-95e6-4ef5-9686-499d53d991de" + "0b4ffb1d-8550-4080-bc80-b518f8b95752" ], "Accept-Language": [ "en-US" @@ -417,13 +417,13 @@ "gateway" ], "x-ms-request-id": [ - "fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + "8667d777-3406-477f-b1fc-76995d89c3ed" ], "x-ms-correlation-request-id": [ - "fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + "8667d777-3406-477f-b1fc-76995d89c3ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173846Z:fabcf76d-d93f-4af4-8674-4d6eef1cc7b5" + "WESTCENTRALUS:20210211T160828Z:8667d777-3406-477f-b1fc-76995d89c3ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +432,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:46 GMT" + "Thu, 11 Feb 2021 16:08:28 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,17 +447,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps4675' under resource group 'ps2758' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps6079' under resource group 'ps9006' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ab3e513-95e6-4ef5-9686-499d53d991de" + "0b4ffb1d-8550-4080-bc80-b518f8b95752" ], "Accept-Language": [ "en-US" @@ -483,7 +483,7 @@ "no-cache" ], "x-ms-request-id": [ - "2f8643be-9a27-4b96-813d-d9876170abd5" + "27f9cc6d-115b-4a7c-9571-9c0e4d90a5a2" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -492,10 +492,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "cc3121ba-d297-4b9f-a604-54b85613c53d" + "aa5da1c1-c95a-4309-a68f-0abdbe0bbde5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173847Z:cc3121ba-d297-4b9f-a604-54b85613c53d" + "WESTCENTRALUS:20210211T160829Z:aa5da1c1-c95a-4309-a68f-0abdbe0bbde5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +504,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:47 GMT" + "Thu, 11 Feb 2021 16:08:29 GMT" ], "Content-Length": [ "587" @@ -519,17 +519,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:47.2871692Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:47.2871692Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps4675\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:08:29.6089303Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:08:29.6089303Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps6079\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMjc1OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNDY3NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzOTAwNi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNjA3OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7ab3e513-95e6-4ef5-9686-499d53d991de" + "0b4ffb1d-8550-4080-bc80-b518f8b95752" ], "Accept-Language": [ "en-US" @@ -555,7 +555,7 @@ "no-cache" ], "x-ms-request-id": [ - "1b1e5141-0517-47ff-a54f-31545a43bb94" + "fa4c02da-b73f-456f-a8ad-7672ede4233f" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,10 +564,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "005af498-c988-4e57-82c3-d16dd38c6985" + "466d7994-643a-4cca-bb4b-d4986122b625" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173848Z:005af498-c988-4e57-82c3-d16dd38c6985" + "WESTCENTRALUS:20210211T160830Z:466d7994-643a-4cca-bb4b-d4986122b625" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,7 +576,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:48 GMT" + "Thu, 11 Feb 2021 16:08:30 GMT" ], "Content-Length": [ "3473" @@ -591,17 +591,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-10T17:38:48.7072869Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-10T17:38:48.7072869Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:08:30.6039491Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:08:30.6039491Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"armbuilddemo18122\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"northeurope\"\r\n }\r\n },\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"name\": \"policy2\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"properties\": {\r\n \"policyType\": \"Custom\",\r\n \"parameters\": {},\r\n \"policyRule\": {\r\n \"if\": {\r\n \"field\": \"location\",\r\n \"equals\": \"[parameters('policyLocation')]\"\r\n },\r\n \"then\": {\r\n \"effect\": \"deny\"\r\n }\r\n }\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Authorization/policyAssignments\",\r\n \"name\": \"location-lock\",\r\n \"apiVersion\": \"2016-12-01\",\r\n \"dependsOn\": [\r\n \"policy2\"\r\n ],\r\n \"properties\": {\r\n \"scope\": \"[subscription().id]\",\r\n \"policyDefinitionId\": \"[resourceId('Microsoft.Authorization/policyDefinitions', 'policy2')]\"\r\n }\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"name\": \"[parameters('nestedDeploymentRG')]\",\r\n \"location\": \"West US\",\r\n \"apiVersion\": \"2019-05-01\",\r\n \"properties\": {}\r\n },\r\n {\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"name\": \"rg-nested\",\r\n \"apiVersion\": \"2017-05-10\",\r\n \"resourceGroup\": \"[parameters('nestedDeploymentRG')]\",\r\n \"dependsOn\": [\r\n \"[parameters('nestedDeploymentRG')]\"\r\n ],\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {},\r\n \"variables\": {},\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('storageAccountName')]\",\r\n \"apiVersion\": \"2015-06-15\",\r\n \"location\": \"East US\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/validate?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "POST", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -630,13 +630,13 @@ "1199" ], "x-ms-request-id": [ - "bbd385ef-a6a4-42cf-8a54-eee82c985e57" + "408e0077-8931-4451-a385-8f75f580a1da" ], "x-ms-correlation-request-id": [ - "bbd385ef-a6a4-42cf-8a54-eee82c985e57" + "408e0077-8931-4451-a385-8f75f580a1da" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173850Z:bbd385ef-a6a4-42cf-8a54-eee82c985e57" + "WESTCENTRALUS:20210211T160832Z:408e0077-8931-4451-a385-8f75f580a1da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,7 +645,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:50 GMT" + "Thu, 11 Feb 2021 16:08:31 GMT" ], "Content-Length": [ "2783" @@ -660,17 +660,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:50.3678952Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"bbd385ef-a6a4-42cf-8a54-eee82c985e57\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:32.0939654Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"408e0077-8931-4451-a385-8f75f580a1da\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"value\": \"armbuilddemo18123\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -696,19 +696,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operationStatuses/08585886281540761016?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operationStatuses/08585885471725369878?api-version=2020-10-01" ], "x-ms-ratelimit-remaining-subscription-writes": [ "1199" ], "x-ms-request-id": [ - "5a9e11ac-b63d-4253-8d2a-4b44c9694647" + "55388230-df9b-4170-85be-34572006baf7" ], "x-ms-correlation-request-id": [ - "5a9e11ac-b63d-4253-8d2a-4b44c9694647" + "55388230-df9b-4170-85be-34572006baf7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173851Z:5a9e11ac-b63d-4253-8d2a-4b44c9694647" + "WESTCENTRALUS:20210211T160833Z:55388230-df9b-4170-85be-34572006baf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,7 +717,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:51 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Length": [ "2081" @@ -732,17 +732,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-11T16:08:33.4388718Z\",\r\n \"duration\": \"PT0.4982311S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -765,13 +765,13 @@ "11999" ], "x-ms-request-id": [ - "25dce7c4-4f4a-40dc-b111-45c04a88843b" + "9454fbd3-d953-4539-8dfc-180bad644cf2" ], "x-ms-correlation-request-id": [ - "25dce7c4-4f4a-40dc-b111-45c04a88843b" + "9454fbd3-d953-4539-8dfc-180bad644cf2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173852Z:25dce7c4-4f4a-40dc-b111-45c04a88843b" + "WESTCENTRALUS:20210211T160833Z:9454fbd3-d953-4539-8dfc-180bad644cf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -780,7 +780,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:52 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -799,13 +799,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -828,13 +828,13 @@ "11997" ], "x-ms-request-id": [ - "bbdea07c-21e7-4040-a056-836a12be8c27" + "f4302892-cd7f-4822-8b07-3299ea16e2ed" ], "x-ms-correlation-request-id": [ - "bbdea07c-21e7-4040-a056-836a12be8c27" + "f4302892-cd7f-4822-8b07-3299ea16e2ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173852Z:bbdea07c-21e7-4040-a056-836a12be8c27" + "WESTCENTRALUS:20210211T160834Z:f4302892-cd7f-4822-8b07-3299ea16e2ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -843,7 +843,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:52 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -862,13 +862,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -891,13 +891,13 @@ "11995" ], "x-ms-request-id": [ - "7f428550-d1ea-44b4-93a0-27becaebe0ab" + "ac0297fe-03ba-4c1c-82dc-b82b547ce8df" ], "x-ms-correlation-request-id": [ - "7f428550-d1ea-44b4-93a0-27becaebe0ab" + "ac0297fe-03ba-4c1c-82dc-b82b547ce8df" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:7f428550-d1ea-44b4-93a0-27becaebe0ab" + "WESTCENTRALUS:20210211T160834Z:ac0297fe-03ba-4c1c-82dc-b82b547ce8df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,7 +906,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:52 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,23 +915,23 @@ "-1" ], "Content-Length": [ - "12" + "694" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -954,13 +954,13 @@ "11993" ], "x-ms-request-id": [ - "3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + "5f3f7fcf-4761-40c1-8318-ff4f0f26f6db" ], "x-ms-correlation-request-id": [ - "3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + "5f3f7fcf-4761-40c1-8318-ff4f0f26f6db" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:3e567c7b-dad5-42df-ac0a-77c35f6ae5e1" + "WESTCENTRALUS:20210211T160834Z:5f3f7fcf-4761-40c1-8318-ff4f0f26f6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,7 +969,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -978,23 +978,23 @@ "-1" ], "Content-Length": [ - "12" + "1389" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1017,13 +1017,13 @@ "11991" ], "x-ms-request-id": [ - "85642646-eddf-4892-a9de-ad9e26af7b1c" + "36c05ea4-c27c-4505-8f78-3478733c005f" ], "x-ms-correlation-request-id": [ - "85642646-eddf-4892-a9de-ad9e26af7b1c" + "36c05ea4-c27c-4505-8f78-3478733c005f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:85642646-eddf-4892-a9de-ad9e26af7b1c" + "WESTCENTRALUS:20210211T160835Z:36c05ea4-c27c-4505-8f78-3478733c005f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,7 +1032,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1041,23 +1041,23 @@ "-1" ], "Content-Length": [ - "694" + "2063" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1080,13 +1080,13 @@ "11989" ], "x-ms-request-id": [ - "8b777d93-fcb2-4dc9-9436-a9381faacac3" + "6b7b2175-8791-4acc-bc0e-28c443f77911" ], "x-ms-correlation-request-id": [ - "8b777d93-fcb2-4dc9-9436-a9381faacac3" + "6b7b2175-8791-4acc-bc0e-28c443f77911" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:8b777d93-fcb2-4dc9-9436-a9381faacac3" + "WESTCENTRALUS:20210211T160835Z:6b7b2175-8791-4acc-bc0e-28c443f77911" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1095,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1104,23 +1104,23 @@ "-1" ], "Content-Length": [ - "2067" + "2063" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1143,13 +1143,13 @@ "11987" ], "x-ms-request-id": [ - "0063a62e-de14-4509-a2ec-e4634c496d25" + "5ff77bd6-e68b-4336-a061-6a4ed0aab69a" ], "x-ms-correlation-request-id": [ - "0063a62e-de14-4509-a2ec-e4634c496d25" + "5ff77bd6-e68b-4336-a061-6a4ed0aab69a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:0063a62e-de14-4509-a2ec-e4634c496d25" + "WESTCENTRALUS:20210211T160835Z:5ff77bd6-e68b-4336-a061-6a4ed0aab69a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,7 +1158,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" + "Thu, 11 Feb 2021 16:08:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1167,23 +1167,23 @@ "-1" ], "Content-Length": [ - "2067" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:35.9114446Z\",\r\n \"duration\": \"PT1.9323401S\",\r\n \"trackingId\": \"e8fee740-7e7b-4015-9770-b8691f936bba\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1203,16 +1203,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11983" ], "x-ms-request-id": [ - "a473439b-18a9-4246-a401-a86796538960" + "b0a48bbb-567b-4909-abc9-3ae73bfea424" ], "x-ms-correlation-request-id": [ - "a473439b-18a9-4246-a401-a86796538960" + "b0a48bbb-567b-4909-abc9-3ae73bfea424" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:a473439b-18a9-4246-a401-a86796538960" + "WESTCENTRALUS:20210211T160836Z:b0a48bbb-567b-4909-abc9-3ae73bfea424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,7 +1221,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1230,23 +1230,23 @@ "-1" ], "Content-Length": [ - "2067" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0446398Z\",\r\n \"duration\": \"PT2.0655353S\",\r\n \"trackingId\": \"ce0f6800-44d9-4edc-8a4c-95dbc733b755\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1266,16 +1266,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11979" ], "x-ms-request-id": [ - "30ac3726-da48-4b3a-9367-56a55f1c4bdc" + "649bd17c-bfbe-4dc1-99e0-37a9e799883b" ], "x-ms-correlation-request-id": [ - "30ac3726-da48-4b3a-9367-56a55f1c4bdc" + "649bd17c-bfbe-4dc1-99e0-37a9e799883b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:30ac3726-da48-4b3a-9367-56a55f1c4bdc" + "WESTCENTRALUS:20210211T160837Z:649bd17c-bfbe-4dc1-99e0-37a9e799883b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,7 +1284,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1293,23 +1293,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0446398Z\",\r\n \"duration\": \"PT2.0655353S\",\r\n \"trackingId\": \"ce0f6800-44d9-4edc-8a4c-95dbc733b755\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1329,16 +1329,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11975" ], "x-ms-request-id": [ - "18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + "684c0739-7c1e-46f6-a227-d433ce2103fa" ], "x-ms-correlation-request-id": [ - "18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + "684c0739-7c1e-46f6-a227-d433ce2103fa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173855Z:18fa26d9-92b4-4fd2-8c48-2d5caa6d4478" + "WESTCENTRALUS:20210211T160838Z:684c0739-7c1e-46f6-a227-d433ce2103fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,7 +1347,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:55 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1356,23 +1356,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0446398Z\",\r\n \"duration\": \"PT2.0655353S\",\r\n \"trackingId\": \"ce0f6800-44d9-4edc-8a4c-95dbc733b755\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1392,16 +1392,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "11971" ], "x-ms-request-id": [ - "83e78c6d-352b-4727-b31e-24b452bbc969" + "6a104bc7-bccb-4dca-a3dd-648d64ceafee" ], "x-ms-correlation-request-id": [ - "83e78c6d-352b-4727-b31e-24b452bbc969" + "6a104bc7-bccb-4dca-a3dd-648d64ceafee" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173856Z:83e78c6d-352b-4727-b31e-24b452bbc969" + "WESTCENTRALUS:20210211T160838Z:6a104bc7-bccb-4dca-a3dd-648d64ceafee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1410,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:56 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1419,23 +1419,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3667914Z\",\r\n \"duration\": \"PT4.3876869S\",\r\n \"trackingId\": \"5c324336-05fe-457c-92c6-a535d77b4e34\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1455,16 +1455,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" + "11967" ], "x-ms-request-id": [ - "5021ed0a-df7a-4238-aab3-49a42668ba7c" + "f55f33e0-1acf-49f2-945f-388a8fd204d4" ], "x-ms-correlation-request-id": [ - "5021ed0a-df7a-4238-aab3-49a42668ba7c" + "f55f33e0-1acf-49f2-945f-388a8fd204d4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173857Z:5021ed0a-df7a-4238-aab3-49a42668ba7c" + "WESTCENTRALUS:20210211T160839Z:f55f33e0-1acf-49f2-945f-388a8fd204d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,7 +1473,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:57 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1482,23 +1482,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8428004Z\",\r\n \"duration\": \"PT1.9401763S\",\r\n \"trackingId\": \"ebe9e5fa-561a-4626-a920-806de26219b1\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3667914Z\",\r\n \"duration\": \"PT4.3876869S\",\r\n \"trackingId\": \"5c324336-05fe-457c-92c6-a535d77b4e34\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1518,16 +1518,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" + "11963" ], "x-ms-request-id": [ - "08e29529-e07e-4e9b-be69-20c2d758582b" + "8437da76-eb95-44b7-a44c-359500d25903" ], "x-ms-correlation-request-id": [ - "08e29529-e07e-4e9b-be69-20c2d758582b" + "8437da76-eb95-44b7-a44c-359500d25903" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173858Z:08e29529-e07e-4e9b-be69-20c2d758582b" + "WESTCENTRALUS:20210211T160840Z:8437da76-eb95-44b7-a44c-359500d25903" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1536,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:58 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1545,23 +1545,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3667914Z\",\r\n \"duration\": \"PT4.3876869S\",\r\n \"trackingId\": \"5c324336-05fe-457c-92c6-a535d77b4e34\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1581,16 +1581,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" + "11959" ], "x-ms-request-id": [ - "ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + "29e5c92f-fdd4-41a1-acf7-ebe2a2593872" ], "x-ms-correlation-request-id": [ - "ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + "29e5c92f-fdd4-41a1-acf7-ebe2a2593872" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:ab41c1a7-70db-4ffc-aacc-0223aa96f0ca" + "WESTCENTRALUS:20210211T160840Z:29e5c92f-fdd4-41a1-acf7-ebe2a2593872" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,7 +1599,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:58 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1608,23 +1608,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3667914Z\",\r\n \"duration\": \"PT4.3876869S\",\r\n \"trackingId\": \"5c324336-05fe-457c-92c6-a535d77b4e34\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1644,16 +1644,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "11955" ], "x-ms-request-id": [ - "5a6bd965-d887-4f3c-9195-bb724e87fbdd" + "38e6ea5b-f41a-494e-a267-8434625e8ebd" ], "x-ms-correlation-request-id": [ - "5a6bd965-d887-4f3c-9195-bb724e87fbdd" + "38e6ea5b-f41a-494e-a267-8434625e8ebd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:5a6bd965-d887-4f3c-9195-bb724e87fbdd" + "WESTCENTRALUS:20210211T160841Z:38e6ea5b-f41a-494e-a267-8434625e8ebd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1662,7 +1662,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1671,23 +1671,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1707,16 +1707,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "11951" ], "x-ms-request-id": [ - "b31f93cc-0948-4984-8d01-432e0e49d05f" + "19059f35-783b-4883-acae-429a4ee56e56" ], "x-ms-correlation-request-id": [ - "b31f93cc-0948-4984-8d01-432e0e49d05f" + "19059f35-783b-4883-acae-429a4ee56e56" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173900Z:b31f93cc-0948-4984-8d01-432e0e49d05f" + "WESTCENTRALUS:20210211T160842Z:19059f35-783b-4883-acae-429a4ee56e56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1725,7 +1725,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:00 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1734,23 +1734,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1770,16 +1770,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" + "11947" ], "x-ms-request-id": [ - "8c72cb85-8db9-40f2-912a-f3426966bf3b" + "16f60eb4-c17e-4d4f-9fb1-2ed898166345" ], "x-ms-correlation-request-id": [ - "8c72cb85-8db9-40f2-912a-f3426966bf3b" + "16f60eb4-c17e-4d4f-9fb1-2ed898166345" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:8c72cb85-8db9-40f2-912a-f3426966bf3b" + "WESTCENTRALUS:20210211T160842Z:16f60eb4-c17e-4d4f-9fb1-2ed898166345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1788,7 +1788,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:01 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1797,23 +1797,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.6404804Z\",\r\n \"duration\": \"PT4.7378563S\",\r\n \"trackingId\": \"b60f34b5-c460-4c4d-b2a7-c10c7e39e9a8\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1833,16 +1833,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" + "11943" ], "x-ms-request-id": [ - "8e463778-9d77-486c-bb27-b8eff639cf34" + "3b62360c-6dcc-4411-9f8f-92ed082cb005" ], "x-ms-correlation-request-id": [ - "8e463778-9d77-486c-bb27-b8eff639cf34" + "3b62360c-6dcc-4411-9f8f-92ed082cb005" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:8e463778-9d77-486c-bb27-b8eff639cf34" + "WESTCENTRALUS:20210211T160843Z:3b62360c-6dcc-4411-9f8f-92ed082cb005" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,7 +1851,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:01 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1860,23 +1860,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1896,16 +1896,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" + "11939" ], "x-ms-request-id": [ - "f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + "25178674-9995-490d-abd4-9b6c5f91aa5b" ], "x-ms-correlation-request-id": [ - "f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + "25178674-9995-490d-abd4-9b6c5f91aa5b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173902Z:f1a3220c-9c1f-4680-b5c7-5e66eb172ebe" + "WESTCENTRALUS:20210211T160844Z:25178674-9995-490d-abd4-9b6c5f91aa5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1914,7 +1914,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,23 +1923,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -1959,16 +1959,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" + "11935" ], "x-ms-request-id": [ - "9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + "fe4da5de-4bb9-4ced-b1f0-b98d405bfc7e" ], "x-ms-correlation-request-id": [ - "9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + "fe4da5de-4bb9-4ced-b1f0-b98d405bfc7e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173903Z:9ff9ea2b-c99e-4ebe-905e-6b18a849a237" + "WESTCENTRALUS:20210211T160844Z:fe4da5de-4bb9-4ced-b1f0-b98d405bfc7e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1977,7 +1977,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:03 GMT" + "Thu, 11 Feb 2021 16:08:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1986,23 +1986,23 @@ "-1" ], "Content-Length": [ - "2771" + "2762" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1658093Z\",\r\n \"duration\": \"PT7.1867048S\",\r\n \"trackingId\": \"5e779983-50da-4805-acdc-9941d56b119d\",\r\n \"serviceRequestId\": \"dba51a4e-ad3e-4bb5-a56d-cf384835ee4c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.9446351Z\",\r\n \"duration\": \"PT0.9655306S\",\r\n \"trackingId\": \"662e7d6d-e61f-4475-9b91-a25469967cfb\",\r\n \"serviceRequestId\": \"2b34bfc2-007d-4d31-b815-c0d6b6fef82e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.8318241Z\",\r\n \"duration\": \"PT0.8527196S\",\r\n \"trackingId\": \"30f390ab-7675-45bc-ac84-8689f09dfa7b\",\r\n \"serviceRequestId\": \"westus2:cd445d67-5747-40cb-a7dc-5aa1d6244c1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:34.5797697Z\",\r\n \"duration\": \"PT0.6006652S\",\r\n \"trackingId\": \"65b13500-5f7d-44c6-9cc1-bd72d5597160\",\r\n \"serviceRequestId\": \"westus2:6542a015-be42-47bc-89d1-bb11505bea45\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2021,17 +2021,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" + "11998" ], "x-ms-request-id": [ - "0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + "6150f6de-e058-44b9-af9c-69f30f9f4dca" ], "x-ms-correlation-request-id": [ - "0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + "6150f6de-e058-44b9-af9c-69f30f9f4dca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173904Z:0f2d1fe1-46ba-4249-a2a8-61cc5cd5b760" + "WESTCENTRALUS:20210211T160834Z:6150f6de-e058-44b9-af9c-69f30f9f4dca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,7 +2043,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2049,23 +2052,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2084,17 +2084,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" + "11996" ], "x-ms-request-id": [ - "5bb61efd-7d7b-49e3-854d-f53db8eb5200" + "f5e0671e-7cf8-44e8-a7e2-3e081518d593" ], "x-ms-correlation-request-id": [ - "5bb61efd-7d7b-49e3-854d-f53db8eb5200" + "f5e0671e-7cf8-44e8-a7e2-3e081518d593" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:5bb61efd-7d7b-49e3-854d-f53db8eb5200" + "WESTCENTRALUS:20210211T160834Z:f5e0671e-7cf8-44e8-a7e2-3e081518d593" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2103,7 +2106,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" + "Thu, 11 Feb 2021 16:08:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2112,23 +2115,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2147,17 +2147,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" + "11994" ], "x-ms-request-id": [ - "2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + "8c597bcb-e921-4a0f-a8ca-2c43eccfc1ba" ], "x-ms-correlation-request-id": [ - "2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + "8c597bcb-e921-4a0f-a8ca-2c43eccfc1ba" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:2299db93-c8e6-43b5-a15b-220a5b8fe6ab" + "WESTCENTRALUS:20210211T160834Z:8c597bcb-e921-4a0f-a8ca-2c43eccfc1ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2166,7 +2169,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:05 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2175,23 +2178,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.7694835Z\",\r\n \"duration\": \"PT8.8668594S\",\r\n \"trackingId\": \"7229fdf9-033a-4d3d-a149-b693ee4eb136\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2210,17 +2210,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" + "11992" ], "x-ms-request-id": [ - "0000643c-a618-45da-9b05-05c32d3c912d" + "c5db8337-f000-42ad-ba79-e33719701e14" ], "x-ms-correlation-request-id": [ - "0000643c-a618-45da-9b05-05c32d3c912d" + "c5db8337-f000-42ad-ba79-e33719701e14" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173906Z:0000643c-a618-45da-9b05-05c32d3c912d" + "WESTCENTRALUS:20210211T160835Z:c5db8337-f000-42ad-ba79-e33719701e14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,7 +2232,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2238,23 +2241,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2273,17 +2273,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" + "11990" ], "x-ms-request-id": [ - "3b4981e4-1934-48c9-8694-4cdab05a2264" + "e26938fe-9df1-4772-93df-e82061eb1ece" ], "x-ms-correlation-request-id": [ - "3b4981e4-1934-48c9-8694-4cdab05a2264" + "e26938fe-9df1-4772-93df-e82061eb1ece" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:3b4981e4-1934-48c9-8694-4cdab05a2264" + "WESTCENTRALUS:20210211T160835Z:e26938fe-9df1-4772-93df-e82061eb1ece" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,7 +2295,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" + "Thu, 11 Feb 2021 16:08:34 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2301,23 +2304,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2336,17 +2336,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" + "11988" ], "x-ms-request-id": [ - "5823003b-0595-4745-a73f-4b6141faf52f" + "c435a131-daa8-41b7-b933-4ea81621e620" ], "x-ms-correlation-request-id": [ - "5823003b-0595-4745-a73f-4b6141faf52f" + "c435a131-daa8-41b7-b933-4ea81621e620" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:5823003b-0595-4745-a73f-4b6141faf52f" + "WESTCENTRALUS:20210211T160835Z:c435a131-daa8-41b7-b933-4ea81621e620" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2355,7 +2358,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" + "Thu, 11 Feb 2021 16:08:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2364,23 +2367,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:33.9242323Z\",\r\n \"duration\": \"PT0.9835916S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2399,17 +2399,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" + "11984" ], "x-ms-request-id": [ - "690aae67-d2db-4127-b6c4-9249da0500ce" + "807eb4c4-3c22-4fe2-be62-a4087119ddf3" ], "x-ms-correlation-request-id": [ - "690aae67-d2db-4127-b6c4-9249da0500ce" + "807eb4c4-3c22-4fe2-be62-a4087119ddf3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:690aae67-d2db-4127-b6c4-9249da0500ce" + "WESTCENTRALUS:20210211T160836Z:807eb4c4-3c22-4fe2-be62-a4087119ddf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2418,7 +2421,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:08 GMT" + "Thu, 11 Feb 2021 16:08:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2427,23 +2430,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0188929Z\",\r\n \"duration\": \"PT3.0782522S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2462,17 +2462,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" + "11980" ], "x-ms-request-id": [ - "f300b375-5afa-42e3-9cc5-3f11cfc95469" + "ce0f330e-13da-417a-ac9a-953b71ed2638" ], "x-ms-correlation-request-id": [ - "f300b375-5afa-42e3-9cc5-3f11cfc95469" + "ce0f330e-13da-417a-ac9a-953b71ed2638" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173909Z:f300b375-5afa-42e3-9cc5-3f11cfc95469" + "WESTCENTRALUS:20210211T160837Z:ce0f330e-13da-417a-ac9a-953b71ed2638" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,7 +2484,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:09 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2490,23 +2493,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0188929Z\",\r\n \"duration\": \"PT3.0782522S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2525,17 +2525,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" + "11976" ], "x-ms-request-id": [ - "8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + "fb06155b-a284-4826-ab58-c10a5cbebd1a" ], "x-ms-correlation-request-id": [ - "8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + "fb06155b-a284-4826-ab58-c10a5cbebd1a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173910Z:8d9d9a14-e08c-4194-b8bd-aa64c5ab1db8" + "WESTCENTRALUS:20210211T160837Z:fb06155b-a284-4826-ab58-c10a5cbebd1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2547,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:09 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2553,23 +2556,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:36.0188929Z\",\r\n \"duration\": \"PT3.0782522S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2588,17 +2588,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" + "11972" ], "x-ms-request-id": [ - "df02c941-cc1e-4076-8b89-8e46f300492c" + "bbb4dc8d-4cc5-459e-841e-54f1458270b0" ], "x-ms-correlation-request-id": [ - "df02c941-cc1e-4076-8b89-8e46f300492c" + "bbb4dc8d-4cc5-459e-841e-54f1458270b0" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173910Z:df02c941-cc1e-4076-8b89-8e46f300492c" + "WESTCENTRALUS:20210211T160838Z:bbb4dc8d-4cc5-459e-841e-54f1458270b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2607,7 +2610,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:10 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2616,23 +2619,20 @@ "-1" ], "Content-Length": [ - "2772" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8283438Z\",\r\n \"duration\": \"PT12.9257197S\",\r\n \"trackingId\": \"5eafc857-d27d-4a59-bfee-9ded148a7cae\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3420994Z\",\r\n \"duration\": \"PT5.4014587S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2651,17 +2651,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" + "11968" ], "x-ms-request-id": [ - "d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + "4895860d-cbc2-4609-801d-7972a3ac3639" ], "x-ms-correlation-request-id": [ - "d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + "4895860d-cbc2-4609-801d-7972a3ac3639" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:d4e5ff57-4c8e-4c57-a5cf-1950f14b0c31" + "WESTCENTRALUS:20210211T160839Z:4895860d-cbc2-4609-801d-7972a3ac3639" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2670,7 +2673,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2679,23 +2682,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3420994Z\",\r\n \"duration\": \"PT5.4014587S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2714,17 +2714,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" + "11964" ], "x-ms-request-id": [ - "4f299da2-2c4c-45b2-be79-e5b9c588a815" + "dce98ff6-dad4-4172-b381-829bcade437a" ], "x-ms-correlation-request-id": [ - "4f299da2-2c4c-45b2-be79-e5b9c588a815" + "dce98ff6-dad4-4172-b381-829bcade437a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173912Z:4f299da2-2c4c-45b2-be79-e5b9c588a815" + "WESTCENTRALUS:20210211T160839Z:dce98ff6-dad4-4172-b381-829bcade437a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2733,7 +2736,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2742,23 +2745,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3420994Z\",\r\n \"duration\": \"PT5.4014587S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2777,17 +2777,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" + "11960" ], "x-ms-request-id": [ - "40ccb6a9-8fb2-4562-a978-385b83814671" + "7163fb82-fa6a-4d85-ac48-714ef443af1c" ], "x-ms-correlation-request-id": [ - "40ccb6a9-8fb2-4562-a978-385b83814671" + "7163fb82-fa6a-4d85-ac48-714ef443af1c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173913Z:40ccb6a9-8fb2-4562-a978-385b83814671" + "WESTCENTRALUS:20210211T160840Z:7163fb82-fa6a-4d85-ac48-714ef443af1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2796,7 +2799,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2805,23 +2808,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:38.3420994Z\",\r\n \"duration\": \"PT5.4014587S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2840,17 +2840,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" + "11956" ], "x-ms-request-id": [ - "7245a945-a38b-433c-b093-f94fbe0cf657" + "ccb2f234-2512-412d-978d-591775fa9581" ], "x-ms-correlation-request-id": [ - "7245a945-a38b-433c-b093-f94fbe0cf657" + "ccb2f234-2512-412d-978d-591775fa9581" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173913Z:7245a945-a38b-433c-b093-f94fbe0cf657" + "WESTCENTRALUS:20210211T160841Z:ccb2f234-2512-412d-978d-591775fa9581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2859,7 +2862,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:13 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2868,23 +2871,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2903,17 +2903,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" + "11952" ], "x-ms-request-id": [ - "f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + "5b8b0c98-047e-402d-8c5e-7dc22bc87f62" ], "x-ms-correlation-request-id": [ - "f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + "5b8b0c98-047e-402d-8c5e-7dc22bc87f62" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:f2fec9dc-3f74-4188-be5f-bfe22ea6b488" + "WESTCENTRALUS:20210211T160841Z:5b8b0c98-047e-402d-8c5e-7dc22bc87f62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2922,7 +2925,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2931,23 +2934,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -2966,17 +2966,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11948" ], "x-ms-request-id": [ - "c8196671-43c0-46a1-81a9-ce4d67419f4f" + "81f6e214-4975-48b0-ba49-129531f1208e" ], "x-ms-correlation-request-id": [ - "c8196671-43c0-46a1-81a9-ce4d67419f4f" + "81f6e214-4975-48b0-ba49-129531f1208e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173915Z:c8196671-43c0-46a1-81a9-ce4d67419f4f" + "WESTCENTRALUS:20210211T160842Z:81f6e214-4975-48b0-ba49-129531f1208e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2985,7 +2988,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:15 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2994,23 +2997,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3029,17 +3029,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11944" ], "x-ms-request-id": [ - "d43f20e4-2eec-4c83-a6d5-a63a833c9094" + "21636d8f-bd03-45cc-8f42-3306becd52a1" ], "x-ms-correlation-request-id": [ - "d43f20e4-2eec-4c83-a6d5-a63a833c9094" + "21636d8f-bd03-45cc-8f42-3306becd52a1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173916Z:d43f20e4-2eec-4c83-a6d5-a63a833c9094" + "WESTCENTRALUS:20210211T160843Z:21636d8f-bd03-45cc-8f42-3306becd52a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3048,7 +3051,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:15 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3057,23 +3060,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8854921Z\",\r\n \"duration\": \"PT17.982868S\",\r\n \"trackingId\": \"8b9796af-09a1-4460-a09f-1a87810d4fc7\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3092,17 +3092,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11867" + "11940" ], "x-ms-request-id": [ - "d40577a2-a1d0-4407-8691-a72575216161" + "1a2c6738-ca3c-450c-b618-cc616325d418" ], "x-ms-correlation-request-id": [ - "d40577a2-a1d0-4407-8691-a72575216161" + "1a2c6738-ca3c-450c-b618-cc616325d418" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173916Z:d40577a2-a1d0-4407-8691-a72575216161" + "WESTCENTRALUS:20210211T160843Z:1a2c6738-ca3c-450c-b618-cc616325d418" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3111,7 +3114,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3120,23 +3123,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3155,17 +3155,20 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11863" + "11936" ], "x-ms-request-id": [ - "549ca724-ae81-4e1f-bf23-fec756e9b238" + "48cebcb4-6f2b-4b7a-8167-d9d9c9bf5149" ], "x-ms-correlation-request-id": [ - "549ca724-ae81-4e1f-bf23-fec756e9b238" + "48cebcb4-6f2b-4b7a-8167-d9d9c9bf5149" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:549ca724-ae81-4e1f-bf23-fec756e9b238" + "WESTCENTRALUS:20210211T160844Z:48cebcb4-6f2b-4b7a-8167-d9d9c9bf5149" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3174,7 +3177,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3183,23 +3186,20 @@ "-1" ], "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" + "2080" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:08:41.1392792Z\",\r\n \"duration\": \"PT8.1986385S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNjA3OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3219,16 +3219,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11859" + "11932" ], "x-ms-request-id": [ - "d59c2876-5def-421b-9bfc-42a5cbf18366" + "490371eb-04d3-42cb-a2ae-81b06f8e6f8a" ], "x-ms-correlation-request-id": [ - "d59c2876-5def-421b-9bfc-42a5cbf18366" + "490371eb-04d3-42cb-a2ae-81b06f8e6f8a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173918Z:d59c2876-5def-421b-9bfc-42a5cbf18366" + "WESTCENTRALUS:20210211T160845Z:490371eb-04d3-42cb-a2ae-81b06f8e6f8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3237,7 +3237,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" + "Thu, 11 Feb 2021 16:08:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3246,23 +3246,23 @@ "-1" ], "Content-Length": [ - "2771" + "2629" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps6079\",\r\n \"name\": \"ps6079\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps9006/providers/Microsoft.Resources/templateSpecs/ps6079/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:45.3048905Z\",\r\n \"duration\": \"PT12.3642498S\",\r\n \"correlationId\": \"55388230-df9b-4170-85be-34572006baf7\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3282,16 +3282,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11855" + "11986" ], "x-ms-request-id": [ - "fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + "60665243-a8d7-459e-b021-34d0c6ab3d96" ], "x-ms-correlation-request-id": [ - "fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + "60665243-a8d7-459e-b021-34d0c6ab3d96" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:fa08e0fb-f7e8-4e95-b83f-09bfe0849d9f" + "WESTCENTRALUS:20210211T160836Z:60665243-a8d7-459e-b021-34d0c6ab3d96" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3300,32 +3300,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:18 GMT" + "Thu, 11 Feb 2021 16:08:35 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "2771" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3345,16 +3342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11851" + "11982" ], "x-ms-request-id": [ - "fdcc33f3-c340-4c4d-b923-46298d1f4c80" + "4fe371fd-6ee3-42c2-b1bb-82f9c86e2e36" ], "x-ms-correlation-request-id": [ - "fdcc33f3-c340-4c4d-b923-46298d1f4c80" + "4fe371fd-6ee3-42c2-b1bb-82f9c86e2e36" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:fdcc33f3-c340-4c4d-b923-46298d1f4c80" + "WESTCENTRALUS:20210211T160836Z:4fe371fd-6ee3-42c2-b1bb-82f9c86e2e36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3363,32 +3360,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "2771" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3408,16 +3402,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11847" + "11978" ], "x-ms-request-id": [ - "26410046-bc20-46a6-941a-4787c6d61d4a" + "50c5427f-193b-43f5-a337-524068005907" ], "x-ms-correlation-request-id": [ - "26410046-bc20-46a6-941a-4787c6d61d4a" + "50c5427f-193b-43f5-a337-524068005907" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173920Z:26410046-bc20-46a6-941a-4787c6d61d4a" + "WESTCENTRALUS:20210211T160837Z:50c5427f-193b-43f5-a337-524068005907" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3426,32 +3420,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:20 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "2771" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3471,16 +3462,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11843" + "11974" ], "x-ms-request-id": [ - "f500958c-ff08-4ab1-83e5-733723ac2989" + "80f2a33f-aff4-4f0e-84a6-89586ac572a2" ], "x-ms-correlation-request-id": [ - "f500958c-ff08-4ab1-83e5-733723ac2989" + "80f2a33f-aff4-4f0e-84a6-89586ac572a2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173921Z:f500958c-ff08-4ab1-83e5-733723ac2989" + "WESTCENTRALUS:20210211T160838Z:80f2a33f-aff4-4f0e-84a6-89586ac572a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3489,32 +3480,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:20 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "2771" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -3534,16 +3522,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11839" + "11970" ], "x-ms-request-id": [ - "26ce3db8-9777-4604-868e-75330720d0ef" + "7780cd1f-9d06-4196-a9dc-5e9616690c5c" ], "x-ms-correlation-request-id": [ - "26ce3db8-9777-4604-868e-75330720d0ef" + "7780cd1f-9d06-4196-a9dc-5e9616690c5c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:26ce3db8-9777-4604-868e-75330720d0ef" + "WESTCENTRALUS:20210211T160838Z:7780cd1f-9d06-4196-a9dc-5e9616690c5c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3552,6467 +3540,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:21 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "2771" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11835" - ], - "x-ms-request-id": [ - "ddb390ce-5623-43ea-ac2d-83d8bbd81760" - ], - "x-ms-correlation-request-id": [ - "ddb390ce-5623-43ea-ac2d-83d8bbd81760" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:ddb390ce-5623-43ea-ac2d-83d8bbd81760" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2771" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.542812Z\",\r\n \"duration\": \"PT23.6401879S\",\r\n \"trackingId\": \"101163b3-d9a8-40b2-ba35-b65276dd0a27\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11831" - ], - "x-ms-request-id": [ - "99c15838-9876-48f0-9142-72eb34206715" - ], - "x-ms-correlation-request-id": [ - "99c15838-9876-48f0-9142-72eb34206715" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:99c15838-9876-48f0-9142-72eb34206715" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "3185" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/B321118174BBF031\",\r\n \"operationId\": \"B321118174BBF031\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.3322395Z\",\r\n \"duration\": \"PT30.4296154S\",\r\n \"trackingId\": \"82de6a1d-9472-4332-92f3-5faaa7714aa6\",\r\n \"serviceRequestId\": \"759504c0-798a-4b78-b9aa-3f10af8acd5f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/391C99EB8CBF4AF3\",\r\n \"operationId\": \"391C99EB8CBF4AF3\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.6411531Z\",\r\n \"duration\": \"PT0.738529S\",\r\n \"trackingId\": \"08343492-0b32-422d-a43e-f27bffbc3c5d\",\r\n \"serviceRequestId\": \"0592019c-1f5b-46d4-a5a6-72141af1bfcf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/6D66AAF21EC6EC5F\",\r\n \"operationId\": \"6D66AAF21EC6EC5F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.5772282Z\",\r\n \"duration\": \"PT0.6746041S\",\r\n \"trackingId\": \"68a057fd-d0cc-4882-9a59-ebcef0e62e24\",\r\n \"serviceRequestId\": \"westus2:8bbf2029-d621-4971-a9f0-f618ec86b38a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/7F8EBFE3392EFA31\",\r\n \"operationId\": \"7F8EBFE3392EFA31\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:38:53.3081462Z\",\r\n \"duration\": \"PT0.4055221S\",\r\n \"trackingId\": \"04c51eff-fb27-4d5f-84aa-65b2adf80a8f\",\r\n \"serviceRequestId\": \"westus2:d3eada5f-caf2-4a43-a275-862465a72906\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675/operations/08585886281540761016\",\r\n \"operationId\": \"08585886281540761016\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.4211922Z\",\r\n \"duration\": \"PT0.0484263S\",\r\n \"trackingId\": \"f3946adc-94cd-459e-a9f6-8b88a4e7c27e\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "b692afc3-6a2b-48f3-9222-b9159422df78" - ], - "x-ms-correlation-request-id": [ - "b692afc3-6a2b-48f3-9222-b9159422df78" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173852Z:b692afc3-6a2b-48f3-9222-b9159422df78" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:52 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "8d23b616-7896-43b9-b7b1-859593519f22" - ], - "x-ms-correlation-request-id": [ - "8d23b616-7896-43b9-b7b1-859593519f22" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173852Z:8d23b616-7896-43b9-b7b1-859593519f22" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:52 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-10T17:38:51.7948133Z\",\r\n \"duration\": \"PT0.3932793S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "6be1e196-8f52-43de-8977-38dd38b04f71" - ], - "x-ms-correlation-request-id": [ - "6be1e196-8f52-43de-8977-38dd38b04f71" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:6be1e196-8f52-43de-8977-38dd38b04f71" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "ffddcb88-b933-44e4-a510-f5fba9ce5372" - ], - "x-ms-correlation-request-id": [ - "ffddcb88-b933-44e4-a510-f5fba9ce5372" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:ffddcb88-b933-44e4-a510-f5fba9ce5372" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" - ], - "x-ms-correlation-request-id": [ - "c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173853Z:c73f40c4-2e52-44ec-aa9b-3fcdd30c92ba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:53 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-request-id": [ - "e69919bd-f20f-4683-b54b-eb161d18f461" - ], - "x-ms-correlation-request-id": [ - "e69919bd-f20f-4683-b54b-eb161d18f461" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:e69919bd-f20f-4683-b54b-eb161d18f461" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "x-ms-request-id": [ - "31b51fe2-2bdf-4760-aa64-9a16e28aa654" - ], - "x-ms-correlation-request-id": [ - "31b51fe2-2bdf-4760-aa64-9a16e28aa654" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:31b51fe2-2bdf-4760-aa64-9a16e28aa654" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:52.8577718Z\",\r\n \"duration\": \"PT1.4562378S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "5b95cf63-01e3-4f52-bbc0-ffab7a062f04" - ], - "x-ms-correlation-request-id": [ - "5b95cf63-01e3-4f52-bbc0-ffab7a062f04" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173854Z:5b95cf63-01e3-4f52-bbc0-ffab7a062f04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:54 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.6928502Z\",\r\n \"duration\": \"PT3.2913162S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-request-id": [ - "eee7563f-583d-4ec6-9ecc-4d1b86714ecd" - ], - "x-ms-correlation-request-id": [ - "eee7563f-583d-4ec6-9ecc-4d1b86714ecd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173855Z:eee7563f-583d-4ec6-9ecc-4d1b86714ecd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:55 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-request-id": [ - "abb7489d-677d-443e-9f5f-e2b7066f15d9" - ], - "x-ms-correlation-request-id": [ - "abb7489d-677d-443e-9f5f-e2b7066f15d9" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173856Z:abb7489d-677d-443e-9f5f-e2b7066f15d9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:56 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-request-id": [ - "79fc9833-d254-4c90-81fa-1f2d3798af49" - ], - "x-ms-correlation-request-id": [ - "79fc9833-d254-4c90-81fa-1f2d3798af49" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173857Z:79fc9833-d254-4c90-81fa-1f2d3798af49" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:57 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:54.8193891Z\",\r\n \"duration\": \"PT3.4178551S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "x-ms-request-id": [ - "2f29be89-ac5f-4d1b-9973-794cf9ee6368" - ], - "x-ms-correlation-request-id": [ - "2f29be89-ac5f-4d1b-9973-794cf9ee6368" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173857Z:2f29be89-ac5f-4d1b-9973-794cf9ee6368" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:57 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-request-id": [ - "a388c839-145a-4d85-9c57-5005088ae1b6" - ], - "x-ms-correlation-request-id": [ - "a388c839-145a-4d85-9c57-5005088ae1b6" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173858Z:a388c839-145a-4d85-9c57-5005088ae1b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:58 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-request-id": [ - "d2af11bf-ae4a-4743-b72e-6453f11e4ead" - ], - "x-ms-correlation-request-id": [ - "d2af11bf-ae4a-4743-b72e-6453f11e4ead" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:d2af11bf-ae4a-4743-b72e-6453f11e4ead" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-request-id": [ - "74ab2deb-dc10-47af-8709-eaded1b63a9e" - ], - "x-ms-correlation-request-id": [ - "74ab2deb-dc10-47af-8709-eaded1b63a9e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173900Z:74ab2deb-dc10-47af-8709-eaded1b63a9e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:00 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-request-id": [ - "804cc56a-eb14-42ef-9ec0-922fa87c6932" - ], - "x-ms-correlation-request-id": [ - "804cc56a-eb14-42ef-9ec0-922fa87c6932" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:804cc56a-eb14-42ef-9ec0-922fa87c6932" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:00 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2080" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:38:57.4670299Z\",\r\n \"duration\": \"PT6.0654959S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-request-id": [ - "53b624c9-cba6-4866-aa59-aa4607bdbb75" - ], - "x-ms-correlation-request-id": [ - "53b624c9-cba6-4866-aa59-aa4607bdbb75" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:53b624c9-cba6-4866-aa59-aa4607bdbb75" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:01 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-request-id": [ - "6e0bfa85-a159-42f5-b3c0-6d859514e69d" - ], - "x-ms-correlation-request-id": [ - "6e0bfa85-a159-42f5-b3c0-6d859514e69d" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173902Z:6e0bfa85-a159-42f5-b3c0-6d859514e69d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-request-id": [ - "5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" - ], - "x-ms-correlation-request-id": [ - "5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173903Z:5cdc1cc3-170a-49ab-8779-f3bc5c5a9323" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:03 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-request-id": [ - "20c180c9-cbef-46ff-8b3a-3671b494053d" - ], - "x-ms-correlation-request-id": [ - "20c180c9-cbef-46ff-8b3a-3671b494053d" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173904Z:20c180c9-cbef-46ff-8b3a-3671b494053d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:03 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-request-id": [ - "80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" - ], - "x-ms-correlation-request-id": [ - "80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173904Z:80c6a6e5-4d4d-4b6b-9d40-9d968169eb9f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-request-id": [ - "8d519e43-a9c0-4538-9a76-d1638b516a6b" - ], - "x-ms-correlation-request-id": [ - "8d519e43-a9c0-4538-9a76-d1638b516a6b" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:8d519e43-a9c0-4538-9a76-d1638b516a6b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:05 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:01.5995401Z\",\r\n \"duration\": \"PT10.1980061S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-request-id": [ - "de436f9f-9f8c-4750-8662-c2dea2e2ffbd" - ], - "x-ms-correlation-request-id": [ - "de436f9f-9f8c-4750-8662-c2dea2e2ffbd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173906Z:de436f9f-9f8c-4750-8662-c2dea2e2ffbd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-request-id": [ - "f01e6c5e-b0e2-4963-8407-e86adad83dba" - ], - "x-ms-correlation-request-id": [ - "f01e6c5e-b0e2-4963-8407-e86adad83dba" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:f01e6c5e-b0e2-4963-8407-e86adad83dba" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-request-id": [ - "927723fb-39ac-4fe6-8436-5f54fba2730f" - ], - "x-ms-correlation-request-id": [ - "927723fb-39ac-4fe6-8436-5f54fba2730f" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:927723fb-39ac-4fe6-8436-5f54fba2730f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-request-id": [ - "b4af44c3-52bb-4afd-861a-f3331fb777d1" - ], - "x-ms-correlation-request-id": [ - "b4af44c3-52bb-4afd-861a-f3331fb777d1" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:b4af44c3-52bb-4afd-861a-f3331fb777d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:08 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-request-id": [ - "8e79bc61-e002-4a73-bbb5-4e11494cdccd" - ], - "x-ms-correlation-request-id": [ - "8e79bc61-e002-4a73-bbb5-4e11494cdccd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173909Z:8e79bc61-e002-4a73-bbb5-4e11494cdccd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:08 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-request-id": [ - "7e8e052f-d56e-4640-b534-5ab116c0284e" - ], - "x-ms-correlation-request-id": [ - "7e8e052f-d56e-4640-b534-5ab116c0284e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173909Z:7e8e052f-d56e-4640-b534-5ab116c0284e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:09 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-request-id": [ - "51001451-ce10-43fd-b581-4389690b44dc" - ], - "x-ms-correlation-request-id": [ - "51001451-ce10-43fd-b581-4389690b44dc" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173910Z:51001451-ce10-43fd-b581-4389690b44dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:10 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:05.8025422Z\",\r\n \"duration\": \"PT14.4010082S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-request-id": [ - "241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" - ], - "x-ms-correlation-request-id": [ - "241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:241c4bb5-9216-4b9c-b11f-95f85ae0f6a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-request-id": [ - "7f2f0d51-ab89-49e4-9e61-257e9f67ed41" - ], - "x-ms-correlation-request-id": [ - "7f2f0d51-ab89-49e4-9e61-257e9f67ed41" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173912Z:7f2f0d51-ab89-49e4-9e61-257e9f67ed41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-request-id": [ - "8d5ee516-822a-4b80-bde8-ebf56e1c54a4" - ], - "x-ms-correlation-request-id": [ - "8d5ee516-822a-4b80-bde8-ebf56e1c54a4" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173912Z:8d5ee516-822a-4b80-bde8-ebf56e1c54a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-request-id": [ - "f113bdb1-f47c-488c-b7ec-6b71ac94dc56" - ], - "x-ms-correlation-request-id": [ - "f113bdb1-f47c-488c-b7ec-6b71ac94dc56" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173913Z:f113bdb1-f47c-488c-b7ec-6b71ac94dc56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:13 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-request-id": [ - "d5720bf8-5c2c-454e-a761-a25bf78460df" - ], - "x-ms-correlation-request-id": [ - "d5720bf8-5c2c-454e-a761-a25bf78460df" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:d5720bf8-5c2c-454e-a761-a25bf78460df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-request-id": [ - "75162c00-e4f8-4e73-9307-428c2b3d72b2" - ], - "x-ms-correlation-request-id": [ - "75162c00-e4f8-4e73-9307-428c2b3d72b2" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173915Z:75162c00-e4f8-4e73-9307-428c2b3d72b2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" - ], - "x-ms-request-id": [ - "808aea2d-eadc-4cd9-b5ba-fe79abd562a1" - ], - "x-ms-correlation-request-id": [ - "808aea2d-eadc-4cd9-b5ba-fe79abd562a1" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173915Z:808aea2d-eadc-4cd9-b5ba-fe79abd562a1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:10.8515538Z\",\r\n \"duration\": \"PT19.4500198S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11868" - ], - "x-ms-request-id": [ - "28128309-1052-45a1-b7f8-d5d673d46dfd" - ], - "x-ms-correlation-request-id": [ - "28128309-1052-45a1-b7f8-d5d673d46dfd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173916Z:28128309-1052-45a1-b7f8-d5d673d46dfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11864" - ], - "x-ms-request-id": [ - "7cc4e23e-c5ce-442d-87f7-1492877488cb" - ], - "x-ms-correlation-request-id": [ - "7cc4e23e-c5ce-442d-87f7-1492877488cb" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:7cc4e23e-c5ce-442d-87f7-1492877488cb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11860" - ], - "x-ms-request-id": [ - "345b221b-1f5d-43ff-adcd-f1a68bf565f0" - ], - "x-ms-correlation-request-id": [ - "345b221b-1f5d-43ff-adcd-f1a68bf565f0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173918Z:345b221b-1f5d-43ff-adcd-f1a68bf565f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11856" - ], - "x-ms-request-id": [ - "d94fc56c-5b79-4635-8254-2e7dc1f2c352" - ], - "x-ms-correlation-request-id": [ - "d94fc56c-5b79-4635-8254-2e7dc1f2c352" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173918Z:d94fc56c-5b79-4635-8254-2e7dc1f2c352" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11852" - ], - "x-ms-request-id": [ - "94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" - ], - "x-ms-correlation-request-id": [ - "94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:94ec8d33-f7e5-48c3-87b3-12fb7e1b2da7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11848" - ], - "x-ms-request-id": [ - "281e3274-b9dc-475e-8bb0-2020eb09e2cc" - ], - "x-ms-correlation-request-id": [ - "281e3274-b9dc-475e-8bb0-2020eb09e2cc" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173920Z:281e3274-b9dc-475e-8bb0-2020eb09e2cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11844" - ], - "x-ms-request-id": [ - "f7cccec3-8315-45e9-bb55-371b66d835b8" - ], - "x-ms-correlation-request-id": [ - "f7cccec3-8315-45e9-bb55-371b66d835b8" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173921Z:f7cccec3-8315-45e9-bb55-371b66d835b8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:20 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11840" - ], - "x-ms-request-id": [ - "37a76526-b4ee-4edf-866a-9d22484f9a32" - ], - "x-ms-correlation-request-id": [ - "37a76526-b4ee-4edf-866a-9d22484f9a32" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173921Z:37a76526-b4ee-4edf-866a-9d22484f9a32" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:21 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11836" - ], - "x-ms-request-id": [ - "d618b6cd-ffb7-4469-b626-8da665fe7cde" - ], - "x-ms-correlation-request-id": [ - "d618b6cd-ffb7-4469-b626-8da665fe7cde" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:d618b6cd-ffb7-4469-b626-8da665fe7cde" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11832" - ], - "x-ms-request-id": [ - "bc80a346-c228-48be-b739-ee2abf2a4107" - ], - "x-ms-correlation-request-id": [ - "bc80a346-c228-48be-b739-ee2abf2a4107" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:bc80a346-c228-48be-b739-ee2abf2a4107" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2081" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:16.5208934Z\",\r\n \"duration\": \"PT25.1193594S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDY3NT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11828" - ], - "x-ms-request-id": [ - "dc13f58f-2da4-4b6d-a2f9-23d81410f610" - ], - "x-ms-correlation-request-id": [ - "dc13f58f-2da4-4b6d-a2f9-23d81410f610" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:dc13f58f-2da4-4b6d-a2f9-23d81410f610" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:23 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "2629" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps4675\",\r\n \"name\": \"ps4675\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps2758/providers/Microsoft.Resources/templateSpecs/ps4675/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17800733050759820440\",\r\n \"parameters\": {\r\n \"storageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"armbuilddemo18123\"\r\n },\r\n \"nestedDeploymentRG\": {\r\n \"type\": \"String\",\r\n \"value\": \"ps_test_subscription_deployment\"\r\n },\r\n \"policyLocation\": {\r\n \"type\": \"String\",\r\n \"value\": \"northeurope\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:23.4384227Z\",\r\n \"duration\": \"PT32.0368887S\",\r\n \"correlationId\": \"5a9e11ac-b63d-4253-8d2a-4b44c9694647\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Authorization\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"policyDefinitions\",\r\n \"locations\": [\r\n null\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"policyAssignments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [\r\n null\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\",\r\n \"resourceType\": \"Microsoft.Authorization/policyDefinitions\",\r\n \"resourceName\": \"policy2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\",\r\n \"resourceType\": \"Microsoft.Authorization/policyAssignments\",\r\n \"resourceName\": \"location-lock\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\",\r\n \"resourceType\": \"Microsoft.Resources/resourceGroups\",\r\n \"resourceName\": \"ps_test_subscription_deployment\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"rg-nested\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyAssignments/location-lock\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Authorization/policyDefinitions/policy2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-request-id": [ - "73d39ecb-da98-4653-a7b1-d589bff6f86d" - ], - "x-ms-correlation-request-id": [ - "73d39ecb-da98-4653-a7b1-d589bff6f86d" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173855Z:73d39ecb-da98-4653-a7b1-d589bff6f86d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:55 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-request-id": [ - "5b265454-bfd0-481e-aa3f-69fd64cf1647" - ], - "x-ms-correlation-request-id": [ - "5b265454-bfd0-481e-aa3f-69fd64cf1647" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173855Z:5b265454-bfd0-481e-aa3f-69fd64cf1647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:55 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-request-id": [ - "dc52f611-a19f-40b8-8c4e-92c2beabebc0" - ], - "x-ms-correlation-request-id": [ - "dc52f611-a19f-40b8-8c4e-92c2beabebc0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173856Z:dc52f611-a19f-40b8-8c4e-92c2beabebc0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:56 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-request-id": [ - "0b2c22c1-b26f-4158-9b63-724a08889828" - ], - "x-ms-correlation-request-id": [ - "0b2c22c1-b26f-4158-9b63-724a08889828" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173857Z:0b2c22c1-b26f-4158-9b63-724a08889828" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:57 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-request-id": [ - "13080a35-8753-4686-b0c7-92f67b31ca9a" - ], - "x-ms-correlation-request-id": [ - "13080a35-8753-4686-b0c7-92f67b31ca9a" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173858Z:13080a35-8753-4686-b0c7-92f67b31ca9a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:58 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-request-id": [ - "62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" - ], - "x-ms-correlation-request-id": [ - "62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:62c0dfd5-29b6-4148-b69d-d00f88cfb7a5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-request-id": [ - "2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" - ], - "x-ms-correlation-request-id": [ - "2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:2d5ca6a3-88bb-4feb-89e6-6f0edfe2301e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-request-id": [ - "d1c64308-684c-4ade-9355-a5b820ef4fe6" - ], - "x-ms-correlation-request-id": [ - "d1c64308-684c-4ade-9355-a5b820ef4fe6" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173900Z:d1c64308-684c-4ade-9355-a5b820ef4fe6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:00 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-request-id": [ - "65e61107-27f7-4080-90cc-ef33170dac3e" - ], - "x-ms-correlation-request-id": [ - "65e61107-27f7-4080-90cc-ef33170dac3e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:65e61107-27f7-4080-90cc-ef33170dac3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:01 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-request-id": [ - "133a8375-6b46-40ac-9c74-4049c2270c63" - ], - "x-ms-correlation-request-id": [ - "133a8375-6b46-40ac-9c74-4049c2270c63" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173902Z:133a8375-6b46-40ac-9c74-4049c2270c63" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-request-id": [ - "8c1ad156-46d0-4c4a-8d87-63edd40114fd" - ], - "x-ms-correlation-request-id": [ - "8c1ad156-46d0-4c4a-8d87-63edd40114fd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173902Z:8c1ad156-46d0-4c4a-8d87-63edd40114fd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-request-id": [ - "528919ee-70c9-4fe0-afc9-a44aae9be10f" - ], - "x-ms-correlation-request-id": [ - "528919ee-70c9-4fe0-afc9-a44aae9be10f" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173903Z:528919ee-70c9-4fe0-afc9-a44aae9be10f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:03 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-request-id": [ - "6c3668d6-1624-4ba9-853e-3efa0669452b" - ], - "x-ms-correlation-request-id": [ - "6c3668d6-1624-4ba9-853e-3efa0669452b" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173904Z:6c3668d6-1624-4ba9-853e-3efa0669452b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-request-id": [ - "88edde7f-336b-42a5-a368-7e124b50e769" - ], - "x-ms-correlation-request-id": [ - "88edde7f-336b-42a5-a368-7e124b50e769" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:88edde7f-336b-42a5-a368-7e124b50e769" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-request-id": [ - "3dfea79c-9e54-4eb0-8245-f0b682e92144" - ], - "x-ms-correlation-request-id": [ - "3dfea79c-9e54-4eb0-8245-f0b682e92144" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:3dfea79c-9e54-4eb0-8245-f0b682e92144" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:05 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-request-id": [ - "4b26cf18-51a8-48f3-93e3-4d1a767910a3" - ], - "x-ms-correlation-request-id": [ - "4b26cf18-51a8-48f3-93e3-4d1a767910a3" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173906Z:4b26cf18-51a8-48f3-93e3-4d1a767910a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-request-id": [ - "0f8eb2a1-808c-4762-b4ee-041b2df09e56" - ], - "x-ms-correlation-request-id": [ - "0f8eb2a1-808c-4762-b4ee-041b2df09e56" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:0f8eb2a1-808c-4762-b4ee-041b2df09e56" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-request-id": [ - "b45a302a-ee8c-478c-af4d-21ea5d0e79d7" - ], - "x-ms-correlation-request-id": [ - "b45a302a-ee8c-478c-af4d-21ea5d0e79d7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:b45a302a-ee8c-478c-af4d-21ea5d0e79d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-request-id": [ - "0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" - ], - "x-ms-correlation-request-id": [ - "0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:0a7ac4c4-7e00-4bfb-b404-886c79f3deb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:08 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-request-id": [ - "e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" - ], - "x-ms-correlation-request-id": [ - "e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173909Z:e7f04be0-5bc7-4ca1-8b1d-c6df63477b3e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:09 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-request-id": [ - "0f702098-4716-4b91-a465-ac0359d0ac36" - ], - "x-ms-correlation-request-id": [ - "0f702098-4716-4b91-a465-ac0359d0ac36" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173910Z:0f702098-4716-4b91-a465-ac0359d0ac36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:10 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-request-id": [ - "d95c59ff-b34d-4967-b9fe-bcceb621f070" - ], - "x-ms-correlation-request-id": [ - "d95c59ff-b34d-4967-b9fe-bcceb621f070" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:d95c59ff-b34d-4967-b9fe-bcceb621f070" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:10 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-request-id": [ - "6de6b301-caca-493f-9700-bb5665d88651" - ], - "x-ms-correlation-request-id": [ - "6de6b301-caca-493f-9700-bb5665d88651" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:6de6b301-caca-493f-9700-bb5665d88651" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-request-id": [ - "a78e8e7b-d4fc-4356-8488-8feb2aa396c6" - ], - "x-ms-correlation-request-id": [ - "a78e8e7b-d4fc-4356-8488-8feb2aa396c6" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173912Z:a78e8e7b-d4fc-4356-8488-8feb2aa396c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-request-id": [ - "53c0126b-d4a8-45c8-9d09-0d3d42b1919c" - ], - "x-ms-correlation-request-id": [ - "53c0126b-d4a8-45c8-9d09-0d3d42b1919c" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173913Z:53c0126b-d4a8-45c8-9d09-0d3d42b1919c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-request-id": [ - "275ca3e0-708f-43d1-aae2-fa1f2c6d9118" - ], - "x-ms-correlation-request-id": [ - "275ca3e0-708f-43d1-aae2-fa1f2c6d9118" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:275ca3e0-708f-43d1-aae2-fa1f2c6d9118" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:13 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-request-id": [ - "269d1b7a-0acb-4375-9084-c553d840165c" - ], - "x-ms-correlation-request-id": [ - "269d1b7a-0acb-4375-9084-c553d840165c" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:269d1b7a-0acb-4375-9084-c553d840165c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-request-id": [ - "2ee6618e-7853-4789-a1ff-79317254c8a4" - ], - "x-ms-correlation-request-id": [ - "2ee6618e-7853-4789-a1ff-79317254c8a4" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173915Z:2ee6618e-7853-4789-a1ff-79317254c8a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:15 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11870" - ], - "x-ms-request-id": [ - "f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" - ], - "x-ms-correlation-request-id": [ - "f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173916Z:f4cae490-57f6-4d4b-afd6-fd5c72f08ea1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11866" - ], - "x-ms-request-id": [ - "3f3c1f0b-1693-4769-a242-d9800f006793" - ], - "x-ms-correlation-request-id": [ - "3f3c1f0b-1693-4769-a242-d9800f006793" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:3f3c1f0b-1693-4769-a242-d9800f006793" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11862" - ], - "x-ms-request-id": [ - "04735cfc-7c05-4cf9-87bb-366c0079ab06" - ], - "x-ms-correlation-request-id": [ - "04735cfc-7c05-4cf9-87bb-366c0079ab06" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:04735cfc-7c05-4cf9-87bb-366c0079ab06" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11858" - ], - "x-ms-request-id": [ - "1fea6fbe-aa52-4224-969b-64991068cc66" - ], - "x-ms-correlation-request-id": [ - "1fea6fbe-aa52-4224-969b-64991068cc66" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173918Z:1fea6fbe-aa52-4224-969b-64991068cc66" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:18 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11854" - ], - "x-ms-request-id": [ - "d45e4e56-86f8-463f-b02e-af9231cb53fe" - ], - "x-ms-correlation-request-id": [ - "d45e4e56-86f8-463f-b02e-af9231cb53fe" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:d45e4e56-86f8-463f-b02e-af9231cb53fe" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:18 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11850" - ], - "x-ms-request-id": [ - "f7a3da68-6f6a-43cf-85fa-c7629934ee41" - ], - "x-ms-correlation-request-id": [ - "f7a3da68-6f6a-43cf-85fa-c7629934ee41" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:f7a3da68-6f6a-43cf-85fa-c7629934ee41" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11846" - ], - "x-ms-request-id": [ - "92faaec6-c147-40e1-b283-c7f43ae548ea" - ], - "x-ms-correlation-request-id": [ - "92faaec6-c147-40e1-b283-c7f43ae548ea" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173920Z:92faaec6-c147-40e1-b283-c7f43ae548ea" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:20 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11842" - ], - "x-ms-request-id": [ - "91dd6031-4a35-41cb-8229-70ef5c0194cd" - ], - "x-ms-correlation-request-id": [ - "91dd6031-4a35-41cb-8229-70ef5c0194cd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173921Z:91dd6031-4a35-41cb-8229-70ef5c0194cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:21 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11838" - ], - "x-ms-request-id": [ - "f543df23-dad4-4664-ba08-faf244d086de" - ], - "x-ms-correlation-request-id": [ - "f543df23-dad4-4664-ba08-faf244d086de" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:f543df23-dad4-4664-ba08-faf244d086de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:21 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11834" - ], - "x-ms-request-id": [ - "b0d70d9c-8c2c-443a-ac01-b4f54294a341" - ], - "x-ms-correlation-request-id": [ - "b0d70d9c-8c2c-443a-ac01-b4f54294a341" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:b0d70d9c-8c2c-443a-ac01-b4f54294a341" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11830" - ], - "x-ms-request-id": [ - "cb27cbc8-ec66-45d6-a581-3291e28703f7" - ], - "x-ms-correlation-request-id": [ - "cb27cbc8-ec66-45d6-a581-3291e28703f7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:cb27cbc8-ec66-45d6-a581-3291e28703f7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:23 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-request-id": [ - "40c1df3c-8e37-4a25-b74b-200604f653d4" - ], - "x-ms-correlation-request-id": [ - "40c1df3c-8e37-4a25-b74b-200604f653d4" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173855Z:40c1df3c-8e37-4a25-b74b-200604f653d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:55 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-request-id": [ - "72fbde0b-1f32-442e-ab5c-bc5e9cf63894" - ], - "x-ms-correlation-request-id": [ - "72fbde0b-1f32-442e-ab5c-bc5e9cf63894" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173856Z:72fbde0b-1f32-442e-ab5c-bc5e9cf63894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:56 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-request-id": [ - "d992ff3a-1441-4cc7-a794-402ca326455c" - ], - "x-ms-correlation-request-id": [ - "d992ff3a-1441-4cc7-a794-402ca326455c" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173856Z:d992ff3a-1441-4cc7-a794-402ca326455c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:56 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-request-id": [ - "cff9a071-04b0-4097-8ee7-8a606993c8ca" - ], - "x-ms-correlation-request-id": [ - "cff9a071-04b0-4097-8ee7-8a606993c8ca" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173857Z:cff9a071-04b0-4097-8ee7-8a606993c8ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:57 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-request-id": [ - "5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" - ], - "x-ms-correlation-request-id": [ - "5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173858Z:5b4a4fb4-1b6f-4e0a-9300-2e865070d4d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:58 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-request-id": [ - "1a2769ec-65f7-4adf-b670-1161cf6427cd" - ], - "x-ms-correlation-request-id": [ - "1a2769ec-65f7-4adf-b670-1161cf6427cd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173859Z:1a2769ec-65f7-4adf-b670-1161cf6427cd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-request-id": [ - "868f0f13-cd1f-42b2-8d7b-11d17af5ab67" - ], - "x-ms-correlation-request-id": [ - "868f0f13-cd1f-42b2-8d7b-11d17af5ab67" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173900Z:868f0f13-cd1f-42b2-8d7b-11d17af5ab67" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:38:59 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "12" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-request-id": [ - "6274041e-b568-4330-aba3-e6638a9ae32e" - ], - "x-ms-correlation-request-id": [ - "6274041e-b568-4330-aba3-e6638a9ae32e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173900Z:6274041e-b568-4330-aba3-e6638a9ae32e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:00 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-request-id": [ - "a8f14d6b-c06f-434c-aefd-52b60aadddfd" - ], - "x-ms-correlation-request-id": [ - "a8f14d6b-c06f-434c-aefd-52b60aadddfd" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173901Z:a8f14d6b-c06f-434c-aefd-52b60aadddfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:01 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-request-id": [ - "324d6b72-4efd-48a4-b047-f797835cac0e" - ], - "x-ms-correlation-request-id": [ - "324d6b72-4efd-48a4-b047-f797835cac0e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173902Z:324d6b72-4efd-48a4-b047-f797835cac0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-request-id": [ - "1db3fd25-33ea-49a0-b8b4-8fe077d159de" - ], - "x-ms-correlation-request-id": [ - "1db3fd25-33ea-49a0-b8b4-8fe077d159de" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173903Z:1db3fd25-33ea-49a0-b8b4-8fe077d159de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:02 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-request-id": [ - "4d248cef-e125-4acd-a00b-3a8e25d3da6e" - ], - "x-ms-correlation-request-id": [ - "4d248cef-e125-4acd-a00b-3a8e25d3da6e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173903Z:4d248cef-e125-4acd-a00b-3a8e25d3da6e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:03 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-request-id": [ - "323b6785-1585-4b33-a8c3-252409440587" - ], - "x-ms-correlation-request-id": [ - "323b6785-1585-4b33-a8c3-252409440587" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173904Z:323b6785-1585-4b33-a8c3-252409440587" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:04 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-request-id": [ - "b019f419-08dd-4c6b-9e45-b071b27469e3" - ], - "x-ms-correlation-request-id": [ - "b019f419-08dd-4c6b-9e45-b071b27469e3" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173905Z:b019f419-08dd-4c6b-9e45-b071b27469e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:05 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-request-id": [ - "b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" - ], - "x-ms-correlation-request-id": [ - "b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173906Z:b5dfdf47-ec10-490f-b5a5-2cf312da0eb2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:05 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-request-id": [ - "0f02f687-6912-4bdb-b7fd-a6b99ac4a077" - ], - "x-ms-correlation-request-id": [ - "0f02f687-6912-4bdb-b7fd-a6b99ac4a077" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173906Z:0f02f687-6912-4bdb-b7fd-a6b99ac4a077" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:39:06 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "785" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10032,16 +3582,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" + "11966" ], "x-ms-request-id": [ - "fdb83b7e-a476-4914-9566-7edad5168ae0" + "3a1bcf24-ac68-4dcb-a09b-22d648050ae6" ], "x-ms-correlation-request-id": [ - "fdb83b7e-a476-4914-9566-7edad5168ae0" + "3a1bcf24-ac68-4dcb-a09b-22d648050ae6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173907Z:fdb83b7e-a476-4914-9566-7edad5168ae0" + "WESTCENTRALUS:20210211T160839Z:3a1bcf24-ac68-4dcb-a09b-22d648050ae6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10050,32 +3600,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10095,16 +3642,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" + "11962" ], "x-ms-request-id": [ - "4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + "3c238411-78bb-45be-b931-060966e459d7" ], "x-ms-correlation-request-id": [ - "4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + "3c238411-78bb-45be-b931-060966e459d7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:4a4f8e24-a1ac-436b-a5f4-906dedca6f52" + "WESTCENTRALUS:20210211T160840Z:3c238411-78bb-45be-b931-060966e459d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10113,32 +3660,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:07 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10158,16 +3702,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" + "11958" ], "x-ms-request-id": [ - "b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + "5691424f-7b70-452e-806f-d5ad2cf2fa37" ], "x-ms-correlation-request-id": [ - "b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + "5691424f-7b70-452e-806f-d5ad2cf2fa37" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173908Z:b2062467-01cf-4ed4-8a2d-5e2bb1663a68" + "WESTCENTRALUS:20210211T160840Z:5691424f-7b70-452e-806f-d5ad2cf2fa37" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10176,32 +3720,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:08 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10221,16 +3762,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" + "11954" ], "x-ms-request-id": [ - "1cb872ba-4b07-472d-88e6-7598f022265d" + "0d2cc51b-edc3-419b-8a4b-7f058635cfce" ], "x-ms-correlation-request-id": [ - "1cb872ba-4b07-472d-88e6-7598f022265d" + "0d2cc51b-edc3-419b-8a4b-7f058635cfce" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173909Z:1cb872ba-4b07-472d-88e6-7598f022265d" + "WESTCENTRALUS:20210211T160841Z:0d2cc51b-edc3-419b-8a4b-7f058635cfce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10239,32 +3780,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:09 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10284,16 +3822,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" + "11950" ], "x-ms-request-id": [ - "94fc8158-ac30-410f-8f16-3e44e62fcb69" + "7a042978-4686-4285-acd5-d46a47fff016" ], "x-ms-correlation-request-id": [ - "94fc8158-ac30-410f-8f16-3e44e62fcb69" + "7a042978-4686-4285-acd5-d46a47fff016" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173910Z:94fc8158-ac30-410f-8f16-3e44e62fcb69" + "WESTCENTRALUS:20210211T160842Z:7a042978-4686-4285-acd5-d46a47fff016" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10302,32 +3840,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:10 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10347,16 +3882,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" + "11946" ], "x-ms-request-id": [ - "b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + "9e4ba570-5676-465b-b2c1-73037d474266" ], "x-ms-correlation-request-id": [ - "b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + "9e4ba570-5676-465b-b2c1-73037d474266" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:b65fd7f1-6165-4e2a-98e8-9581d8df56f1" + "WESTCENTRALUS:20210211T160842Z:9e4ba570-5676-465b-b2c1-73037d474266" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10365,32 +3900,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10410,16 +3942,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" + "11942" ], "x-ms-request-id": [ - "2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + "7bdd1110-6428-4434-b89e-eab1e95c318a" ], "x-ms-correlation-request-id": [ - "2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + "7bdd1110-6428-4434-b89e-eab1e95c318a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173911Z:2ce5fc58-cc40-44db-a93f-a8f2df6c1696" + "WESTCENTRALUS:20210211T160843Z:7bdd1110-6428-4434-b89e-eab1e95c318a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10428,32 +3960,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:11 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10473,16 +4002,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" + "11938" ], "x-ms-request-id": [ - "50c52227-cee3-42a7-99be-045bd31eb30a" + "db7c0417-2fde-411d-9f4d-680731f9645e" ], "x-ms-correlation-request-id": [ - "50c52227-cee3-42a7-99be-045bd31eb30a" + "db7c0417-2fde-411d-9f4d-680731f9645e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173912Z:50c52227-cee3-42a7-99be-045bd31eb30a" + "WESTCENTRALUS:20210211T160844Z:db7c0417-2fde-411d-9f4d-680731f9645e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10491,32 +4020,29 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:12 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvZGVwbG95bWVudHMvcmctbmVzdGVkL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzX3Rlc3Rfc3Vic2NyaXB0aW9uX2RlcGxveW1lbnQvcHJvdmlkZXJzL01pY3Jvc29mdC5SZXNvdXJjZXMvZGVwbG95bWVudHMvcmctbmVzdGVkP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10536,16 +4062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" + "11934" ], "x-ms-request-id": [ - "5d2e569e-769d-496a-8247-d54fbe868073" + "5d6b1979-6269-4955-8e10-161e927e1530" ], "x-ms-correlation-request-id": [ - "5d2e569e-769d-496a-8247-d54fbe868073" + "5d6b1979-6269-4955-8e10-161e927e1530" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173913Z:5d2e569e-769d-496a-8247-d54fbe868073" + "WESTCENTRALUS:20210211T160845Z:5d6b1979-6269-4955-8e10-161e927e1530" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10554,23 +4080,20 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:13 GMT" + "Thu, 11 Feb 2021 16:08:44 GMT" ], - "Content-Type": [ - "application/json; charset=utf-8" + "Content-Length": [ + "0" ], "Expires": [ "-1" ], - "Content-Length": [ - "785" - ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps_test_subscription_deployment/deployments/rg-nested/operations?api-version=2020-10-01", @@ -10579,7 +4102,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10599,16 +4122,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" + "11985" ], "x-ms-request-id": [ - "9a841b56-643b-487e-a9cb-63a730b4e550" + "5cddc5dc-6a90-471b-9420-839d71dad07a" ], "x-ms-correlation-request-id": [ - "9a841b56-643b-487e-a9cb-63a730b4e550" + "5cddc5dc-6a90-471b-9420-839d71dad07a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:9a841b56-643b-487e-a9cb-63a730b4e550" + "WESTCENTRALUS:20210211T160836Z:5cddc5dc-6a90-471b-9420-839d71dad07a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10617,7 +4140,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" + "Thu, 11 Feb 2021 16:08:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10626,13 +4149,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10642,7 +4165,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10662,16 +4185,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" + "11981" ], "x-ms-request-id": [ - "816675f1-cc0a-4485-bef3-09c77dfbe660" + "10d02de6-0d5e-4d84-82cd-d7f54b8bc032" ], "x-ms-correlation-request-id": [ - "816675f1-cc0a-4485-bef3-09c77dfbe660" + "10d02de6-0d5e-4d84-82cd-d7f54b8bc032" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173914Z:816675f1-cc0a-4485-bef3-09c77dfbe660" + "WESTCENTRALUS:20210211T160837Z:10d02de6-0d5e-4d84-82cd-d7f54b8bc032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10680,7 +4203,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:14 GMT" + "Thu, 11 Feb 2021 16:08:36 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10689,13 +4212,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10705,7 +4228,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10725,16 +4248,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11977" ], "x-ms-request-id": [ - "5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + "425f86fc-959e-49d4-b768-88269ed37608" ], "x-ms-correlation-request-id": [ - "5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + "425f86fc-959e-49d4-b768-88269ed37608" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173915Z:5e74aa0a-5e9e-450a-bf47-5c0b6100a4f0" + "WESTCENTRALUS:20210211T160837Z:425f86fc-959e-49d4-b768-88269ed37608" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10743,7 +4266,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:15 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10752,13 +4275,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10768,7 +4291,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10788,16 +4311,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11869" + "11973" ], "x-ms-request-id": [ - "882de0f3-309f-487e-8479-e3f15a1fcb43" + "e2377d4a-815e-4af8-8830-9bd7f735aad2" ], "x-ms-correlation-request-id": [ - "882de0f3-309f-487e-8479-e3f15a1fcb43" + "e2377d4a-815e-4af8-8830-9bd7f735aad2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173916Z:882de0f3-309f-487e-8479-e3f15a1fcb43" + "WESTCENTRALUS:20210211T160838Z:e2377d4a-815e-4af8-8830-9bd7f735aad2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10806,7 +4329,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" + "Thu, 11 Feb 2021 16:08:37 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10815,13 +4338,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10831,7 +4354,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10851,16 +4374,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11865" + "11969" ], "x-ms-request-id": [ - "81bae6d0-1970-4af5-95c8-c7386074c9ce" + "dbce7710-96ca-45cc-83a9-88848a0b1b59" ], "x-ms-correlation-request-id": [ - "81bae6d0-1970-4af5-95c8-c7386074c9ce" + "dbce7710-96ca-45cc-83a9-88848a0b1b59" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:81bae6d0-1970-4af5-95c8-c7386074c9ce" + "WESTCENTRALUS:20210211T160839Z:dbce7710-96ca-45cc-83a9-88848a0b1b59" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10869,7 +4392,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:16 GMT" + "Thu, 11 Feb 2021 16:08:38 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10878,13 +4401,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10894,7 +4417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10914,16 +4437,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11861" + "11965" ], "x-ms-request-id": [ - "7467ae13-5fcf-45c6-b366-e46cf8243b6d" + "582edb72-5d59-4458-bbe4-fa209fd5772d" ], "x-ms-correlation-request-id": [ - "7467ae13-5fcf-45c6-b366-e46cf8243b6d" + "582edb72-5d59-4458-bbe4-fa209fd5772d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173917Z:7467ae13-5fcf-45c6-b366-e46cf8243b6d" + "WESTCENTRALUS:20210211T160839Z:582edb72-5d59-4458-bbe4-fa209fd5772d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10932,7 +4455,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:17 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -10941,13 +4464,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -10957,7 +4480,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -10977,16 +4500,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11857" + "11961" ], "x-ms-request-id": [ - "97581177-2d17-4292-9139-c070cc787679" + "6103540c-88ac-4061-bbe2-3d357a8f1ab6" ], "x-ms-correlation-request-id": [ - "97581177-2d17-4292-9139-c070cc787679" + "6103540c-88ac-4061-bbe2-3d357a8f1ab6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173918Z:97581177-2d17-4292-9139-c070cc787679" + "WESTCENTRALUS:20210211T160840Z:6103540c-88ac-4061-bbe2-3d357a8f1ab6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10995,7 +4518,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:18 GMT" + "Thu, 11 Feb 2021 16:08:39 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11004,13 +4527,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -11020,7 +4543,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11040,16 +4563,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11853" + "11957" ], "x-ms-request-id": [ - "c7dfb573-c426-45dc-b046-08cb4ece7519" + "dcc44125-ad47-4681-92d0-7e61f2235394" ], "x-ms-correlation-request-id": [ - "c7dfb573-c426-45dc-b046-08cb4ece7519" + "dcc44125-ad47-4681-92d0-7e61f2235394" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173919Z:c7dfb573-c426-45dc-b046-08cb4ece7519" + "WESTCENTRALUS:20210211T160841Z:dcc44125-ad47-4681-92d0-7e61f2235394" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11058,7 +4581,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" + "Thu, 11 Feb 2021 16:08:40 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11067,13 +4590,13 @@ "-1" ], "Content-Length": [ - "785" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { @@ -11083,7 +4606,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11103,16 +4626,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11849" + "11953" ], "x-ms-request-id": [ - "7bb808b1-2e2f-4808-a828-62497ffc5854" + "2696380e-a270-475b-8067-72e0fb15cb52" ], "x-ms-correlation-request-id": [ - "7bb808b1-2e2f-4808-a828-62497ffc5854" + "2696380e-a270-475b-8067-72e0fb15cb52" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173920Z:7bb808b1-2e2f-4808-a828-62497ffc5854" + "WESTCENTRALUS:20210211T160841Z:2696380e-a270-475b-8067-72e0fb15cb52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11121,7 +4644,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:19 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11130,13 +4653,13 @@ "-1" ], "Content-Length": [ - "785" + "782" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:00.3630758Z\",\r\n \"duration\": \"PT4.786958S\",\r\n \"trackingId\": \"67758e86-a783-41e3-95e4-4e93350195ca\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -11146,7 +4669,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11166,16 +4689,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11845" + "11949" ], "x-ms-request-id": [ - "0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + "60ebe1fe-3371-4679-8bcd-2a3eb7f720dc" ], "x-ms-correlation-request-id": [ - "0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + "60ebe1fe-3371-4679-8bcd-2a3eb7f720dc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173920Z:0d4302bf-2cb0-4c2e-89a4-338c56e4c8ba" + "WESTCENTRALUS:20210211T160842Z:60ebe1fe-3371-4679-8bcd-2a3eb7f720dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11184,7 +4707,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:20 GMT" + "Thu, 11 Feb 2021 16:08:41 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11193,13 +4716,13 @@ "-1" ], "Content-Length": [ - "781" + "1248" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-10T17:39:20.5714802Z\",\r\n \"duration\": \"PT24.9953624S\",\r\n \"trackingId\": \"bf7ce063-1027-4452-b59e-138e2ef530a1\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885471702515685\",\r\n \"operationId\": \"08585885471702515685\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:42.2512009Z\",\r\n \"duration\": \"PT4.6091964S\",\r\n \"trackingId\": \"746182f6-398c-44a1-96c6-152ac3f3ffab\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -11209,7 +4732,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11229,16 +4752,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11841" + "11945" ], "x-ms-request-id": [ - "4c8ae20d-778d-4cb3-be76-18badd2a1121" + "3bb2a84d-d236-41da-a5cd-9ea25ee598aa" ], "x-ms-correlation-request-id": [ - "4c8ae20d-778d-4cb3-be76-18badd2a1121" + "3bb2a84d-d236-41da-a5cd-9ea25ee598aa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173921Z:4c8ae20d-778d-4cb3-be76-18badd2a1121" + "WESTCENTRALUS:20210211T160843Z:3bb2a84d-d236-41da-a5cd-9ea25ee598aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11247,7 +4770,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:21 GMT" + "Thu, 11 Feb 2021 16:08:42 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11256,13 +4779,13 @@ "-1" ], "Content-Length": [ - "782" + "1248" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885471702515685\",\r\n \"operationId\": \"08585885471702515685\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:42.2512009Z\",\r\n \"duration\": \"PT4.6091964S\",\r\n \"trackingId\": \"746182f6-398c-44a1-96c6-152ac3f3ffab\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -11272,7 +4795,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11292,16 +4815,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11837" + "11941" ], "x-ms-request-id": [ - "58c6a9f4-6fe3-4086-bfd1-d0262715279d" + "ce031adc-42f1-4eef-93ab-fc75d5e588dc" ], "x-ms-correlation-request-id": [ - "58c6a9f4-6fe3-4086-bfd1-d0262715279d" + "ce031adc-42f1-4eef-93ab-fc75d5e588dc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173922Z:58c6a9f4-6fe3-4086-bfd1-d0262715279d" + "WESTCENTRALUS:20210211T160843Z:ce031adc-42f1-4eef-93ab-fc75d5e588dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11310,7 +4833,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11325,7 +4848,7 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885471702515685\",\r\n \"operationId\": \"08585885471702515685\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:42.2512009Z\",\r\n \"duration\": \"PT4.6091964S\",\r\n \"trackingId\": \"746182f6-398c-44a1-96c6-152ac3f3ffab\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -11335,7 +4858,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11355,16 +4878,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11833" + "11937" ], "x-ms-request-id": [ - "af98b640-7237-4ef2-8f28-f7a878cea5f5" + "66470ad2-d2f1-4a7a-846f-459e4cb21e58" ], "x-ms-correlation-request-id": [ - "af98b640-7237-4ef2-8f28-f7a878cea5f5" + "66470ad2-d2f1-4a7a-846f-459e4cb21e58" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:af98b640-7237-4ef2-8f28-f7a878cea5f5" + "WESTCENTRALUS:20210211T160844Z:66470ad2-d2f1-4a7a-846f-459e4cb21e58" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11373,7 +4896,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:22 GMT" + "Thu, 11 Feb 2021 16:08:43 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11388,7 +4911,7 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885471702515685\",\r\n \"operationId\": \"08585885471702515685\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:42.2512009Z\",\r\n \"duration\": \"PT4.6091964S\",\r\n \"trackingId\": \"746182f6-398c-44a1-96c6-152ac3f3ffab\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -11398,7 +4921,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ece6e963-7175-404b-8747-be71dc6928f6" + "838f4d2d-fc56-4fe6-9bf7-0408bb4693da" ], "Accept-Language": [ "en-US" @@ -11418,16 +4941,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11829" + "11933" ], "x-ms-request-id": [ - "9e91c425-e7d3-4dbc-97bb-e729c633219a" + "a7272f47-ea42-4945-afb0-3f8b7c953363" ], "x-ms-correlation-request-id": [ - "9e91c425-e7d3-4dbc-97bb-e729c633219a" + "a7272f47-ea42-4945-afb0-3f8b7c953363" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173923Z:9e91c425-e7d3-4dbc-97bb-e729c633219a" + "WESTCENTRALUS:20210211T160845Z:a7272f47-ea42-4945-afb0-3f8b7c953363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11436,7 +4959,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:23 GMT" + "Thu, 11 Feb 2021 16:08:44 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -11451,17 +4974,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:21.182477Z\",\r\n \"duration\": \"PT25.6063592S\",\r\n \"trackingId\": \"03cb80fc-76ea-40d7-9a72-6f410323e345\",\r\n \"serviceRequestId\": \"543fdcc5-bb62-4b76-b21d-7c95e356a063\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585886281515185277\",\r\n \"operationId\": \"08585886281515185277\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-10T17:39:22.0150468Z\",\r\n \"duration\": \"PT26.438929S\",\r\n \"trackingId\": \"de0a0e8f-6df3-4fa9-930a-f160c95a0614\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/D345C2E6B7980393\",\r\n \"operationId\": \"D345C2E6B7980393\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:41.5197509Z\",\r\n \"duration\": \"PT3.8777464S\",\r\n \"trackingId\": \"010ea30d-2d30-49c4-a6cf-867d36ee427b\",\r\n \"serviceRequestId\": \"20dd8a91-8b78-4d17-8b02-fb9a42df093f\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Storage/storageAccounts/armbuilddemo18123\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"armbuilddemo18123\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps_test_subscription_deployment/providers/Microsoft.Resources/deployments/rg-nested/operations/08585885471702515685\",\r\n \"operationId\": \"08585885471702515685\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:08:42.2512009Z\",\r\n \"duration\": \"PT4.6091964S\",\r\n \"trackingId\": \"746182f6-398c-44a1-96c6-152ac3f3ffab\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps2758?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMjc1OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9006?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTAwNj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "Accept-Language": [ "en-US" @@ -11481,7 +5004,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11490,13 +5013,13 @@ "14999" ], "x-ms-request-id": [ - "d327d2da-0597-4454-a22f-95640dc42fd6" + "6bea934e-9456-4449-9333-ee2d009e3c19" ], "x-ms-correlation-request-id": [ - "d327d2da-0597-4454-a22f-95640dc42fd6" + "6bea934e-9456-4449-9333-ee2d009e3c19" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173925Z:d327d2da-0597-4454-a22f-95640dc42fd6" + "WESTCENTRALUS:20210211T160846Z:6bea934e-9456-4449-9333-ee2d009e3c19" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11505,7 +5028,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:24 GMT" + "Thu, 11 Feb 2021 16:08:45 GMT" ], "Expires": [ "-1" @@ -11518,13 +5041,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11541,7 +5064,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11550,13 +5073,13 @@ "11998" ], "x-ms-request-id": [ - "f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + "b948d058-bd87-4081-b5ff-9d961e4d08a1" ], "x-ms-correlation-request-id": [ - "f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + "b948d058-bd87-4081-b5ff-9d961e4d08a1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173940Z:f06d8956-e6aa-45a7-8cc9-f1c83993cb8c" + "WESTCENTRALUS:20210211T160901Z:b948d058-bd87-4081-b5ff-9d961e4d08a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11565,7 +5088,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:39 GMT" + "Thu, 11 Feb 2021 16:09:00 GMT" ], "Expires": [ "-1" @@ -11578,13 +5101,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11601,7 +5124,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11610,13 +5133,13 @@ "11997" ], "x-ms-request-id": [ - "0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + "58523714-f95b-4c72-a0a5-9b935b8ebc63" ], "x-ms-correlation-request-id": [ - "0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + "58523714-f95b-4c72-a0a5-9b935b8ebc63" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T173955Z:0606ff8b-8a30-40fa-8cd7-86a1d09d2905" + "WESTCENTRALUS:20210211T160916Z:58523714-f95b-4c72-a0a5-9b935b8ebc63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11625,7 +5148,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:39:54 GMT" + "Thu, 11 Feb 2021 16:09:16 GMT" ], "Expires": [ "-1" @@ -11638,13 +5161,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11661,7 +5184,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11670,13 +5193,13 @@ "11996" ], "x-ms-request-id": [ - "3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + "64addf6b-fecf-40ba-9268-05f09b42c3be" ], "x-ms-correlation-request-id": [ - "3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + "64addf6b-fecf-40ba-9268-05f09b42c3be" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174010Z:3bb020f6-a2f3-4fc8-8c8d-233b3881e8af" + "WESTCENTRALUS:20210211T160932Z:64addf6b-fecf-40ba-9268-05f09b42c3be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11685,7 +5208,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:40:10 GMT" + "Thu, 11 Feb 2021 16:09:32 GMT" ], "Expires": [ "-1" @@ -11698,13 +5221,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11721,7 +5244,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11730,13 +5253,13 @@ "11995" ], "x-ms-request-id": [ - "157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + "8a60c602-f20f-4dce-b934-2d6b6027a6ff" ], "x-ms-correlation-request-id": [ - "157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + "8a60c602-f20f-4dce-b934-2d6b6027a6ff" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174025Z:157036e7-e3e1-4c1f-ab2a-8a7b4a1e258f" + "WESTCENTRALUS:20210211T160947Z:8a60c602-f20f-4dce-b934-2d6b6027a6ff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11745,7 +5268,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:40:25 GMT" + "Thu, 11 Feb 2021 16:09:47 GMT" ], "Expires": [ "-1" @@ -11758,13 +5281,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11781,7 +5304,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -11790,13 +5313,13 @@ "11994" ], "x-ms-request-id": [ - "c6877737-76e5-4e46-a60e-435206512b60" + "64832a99-17b3-4a79-8f67-5489fe744ffe" ], "x-ms-correlation-request-id": [ - "c6877737-76e5-4e46-a60e-435206512b60" + "64832a99-17b3-4a79-8f67-5489fe744ffe" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174041Z:c6877737-76e5-4e46-a60e-435206512b60" + "WESTCENTRALUS:20210211T161002Z:64832a99-17b3-4a79-8f67-5489fe744ffe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11805,7 +5328,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:40:40 GMT" + "Thu, 11 Feb 2021 16:10:02 GMT" ], "Expires": [ "-1" @@ -11818,13 +5341,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11840,77 +5363,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" - ], - "Retry-After": [ - "0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "75eb1982-ac33-4a75-b312-fccb579f9d5b" - ], - "x-ms-correlation-request-id": [ - "75eb1982-ac33-4a75-b312-fccb579f9d5b" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174056Z:75eb1982-ac33-4a75-b312-fccb579f9d5b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Wed, 10 Feb 2021 17:40:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" - ], - "User-Agent": [ - "FxVersion/4.6.29719.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "5bc693e8-15a9-410a-b036-1aa0737c17d5" + "b0810fed-b8c0-43e7-abc0-ea780762124d" ], "x-ms-correlation-request-id": [ - "5bc693e8-15a9-410a-b036-1aa0737c17d5" + "b0810fed-b8c0-43e7-abc0-ea780762124d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174111Z:5bc693e8-15a9-410a-b036-1aa0737c17d5" + "WESTCENTRALUS:20210211T161017Z:b0810fed-b8c0-43e7-abc0-ea780762124d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11919,7 +5382,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:41:10 GMT" + "Thu, 11 Feb 2021 16:10:17 GMT" ], "Expires": [ "-1" @@ -11935,13 +5398,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI3NTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJM05UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzkwMDYtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXprd01EWXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "08df173e-2463-451b-8d86-e01b19d10ccf" + "f2fff02b-3c6d-4e88-9ab3-5335beacf83a" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -11958,16 +5421,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "40cbcb27-8826-4423-a737-e42de494f117" + "d9d125aa-7441-413f-a678-6e81bcef4acb" ], "x-ms-correlation-request-id": [ - "40cbcb27-8826-4423-a737-e42de494f117" + "d9d125aa-7441-413f-a678-6e81bcef4acb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210210T174111Z:40cbcb27-8826-4423-a737-e42de494f117" + "WESTCENTRALUS:20210211T161017Z:d9d125aa-7441-413f-a678-6e81bcef4acb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -11976,7 +5439,7 @@ "nosniff" ], "Date": [ - "Wed, 10 Feb 2021 17:41:10 GMT" + "Thu, 11 Feb 2021 16:10:17 GMT" ], "Expires": [ "-1" @@ -11994,8 +5457,8 @@ ], "Names": { "Test-NewSubscriptionDeploymentFromTemplateSpec": [ - "ps2758", - "ps4675" + "ps9006", + "ps6079" ] }, "Variables": { From 8bd9078c6151ceb59753ed473acd053a3fad647d Mon Sep 17 00:00:00 2001 From: Gokul Premraj Date: Fri, 12 Feb 2021 12:34:38 -0500 Subject: [PATCH 3/3] Modified and re-recorded Test-NewMGDeploymentFromTemplateSpec --- .../ScenarioTests/DeploymentTests.ps1 | 2 +- .../TestNewMGDeploymentTemplateSpec.json | 810 ++++++++++-------- 2 files changed, 469 insertions(+), 343 deletions(-) diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 429edfc9dda0..1f9a6ba77af4 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -231,7 +231,7 @@ function Test-NewMGDeploymentFromTemplateSpec try { #Create New MG - New-AzManagementGroup -GroupName $managementGroupId + New-AzManagementGroup -GroupName $managementGroupId -ParentId "/providers/Microsoft.Management/managementGroups/AzDeploymentsPSTest" # Prepare our RG and basic template spec: diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json index ca461754966d..7703a58fb793 100644 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewMGDeploymentTemplateSpec.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"ps2549\",\r\n \"properties\": {\r\n \"details\": {\r\n \"parent\": {}\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"name\": \"ps1810\",\r\n \"properties\": {\r\n \"details\": {\r\n \"parent\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzDeploymentsPSTest\"\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa764d32-9395-4f2e-82a6-45cf7286043e" + "a276f02a-fe90-4b25-ae51-44c7033671d3" ], "Cache-Control": [ "no-cache" @@ -25,7 +25,7 @@ "application/json; charset=utf-8" ], "Content-Length": [ - "94" + "188" ] }, "ResponseHeaders": { @@ -36,31 +36,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview" ], "Retry-After": [ "0" ], "x-ms-request-id": [ - "westcentralus:fc025bab-b168-43f6-a488-1285b5e714b1" + "westcentralus:0ede50f1-bd71-44c8-beb0-d0a2b04132c5" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "fc025bab-b168-43f6-a488-1285b5e714b1" + "0ede50f1-bd71-44c8-beb0-d0a2b04132c5" ], "request-id": [ - "fc025bab-b168-43f6-a488-1285b5e714b1" + "0ede50f1-bd71-44c8-beb0-d0a2b04132c5" ], "x-ms-ratelimit-remaining-tenant-writes": [ "1199" ], "x-ms-correlation-request-id": [ - "fc025bab-b168-43f6-a488-1285b5e714b1" + "0ede50f1-bd71-44c8-beb0-d0a2b04132c5" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161909Z:fc025bab-b168-43f6-a488-1285b5e714b1" + "WESTCENTRALUS:20210212T172930Z:0ede50f1-bd71-44c8-beb0-d0a2b04132c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -69,7 +69,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:08 GMT" + "Fri, 12 Feb 2021 17:29:30 GMT" ], "Content-Length": [ "160" @@ -81,17 +81,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"NotStarted\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa764d32-9395-4f2e-82a6-45cf7286043e" + "a276f02a-fe90-4b25-ae51-44c7033671d3" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -108,31 +108,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview" ], "Retry-After": [ "0" ], "x-ms-request-id": [ - "westcentralus:80c83f40-a0ad-4402-be3f-7580f983cc65" + "westcentralus:ae8d1915-6816-49ce-8c65-8091183878ec" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "80c83f40-a0ad-4402-be3f-7580f983cc65" + "ae8d1915-6816-49ce-8c65-8091183878ec" ], "request-id": [ - "80c83f40-a0ad-4402-be3f-7580f983cc65" + "ae8d1915-6816-49ce-8c65-8091183878ec" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "80c83f40-a0ad-4402-be3f-7580f983cc65" + "ae8d1915-6816-49ce-8c65-8091183878ec" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161920Z:80c83f40-a0ad-4402-be3f-7580f983cc65" + "WESTCENTRALUS:20210212T172941Z:ae8d1915-6816-49ce-8c65-8091183878ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -141,7 +141,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:19 GMT" + "Fri, 12 Feb 2021 17:29:40 GMT" ], "Content-Length": [ "157" @@ -153,17 +153,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"Running\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa764d32-9395-4f2e-82a6-45cf7286043e" + "a276f02a-fe90-4b25-ae51-44c7033671d3" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -180,31 +180,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview" + "https://management.azure.com/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview" ], "Retry-After": [ "0" ], "x-ms-request-id": [ - "westcentralus:004ada53-cd9f-4eef-9519-40d20ad3f3c7" + "westcentralus:b796331f-a80a-4ff6-ac69-74415a645a63" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + "b796331f-a80a-4ff6-ac69-74415a645a63" ], "request-id": [ - "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + "b796331f-a80a-4ff6-ac69-74415a645a63" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "004ada53-cd9f-4eef-9519-40d20ad3f3c7" + "b796331f-a80a-4ff6-ac69-74415a645a63" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161930Z:004ada53-cd9f-4eef-9519-40d20ad3f3c7" + "WESTCENTRALUS:20210212T172951Z:b796331f-a80a-4ff6-ac69-74415a645a63" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -213,7 +213,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:30 GMT" + "Fri, 12 Feb 2021 17:29:50 GMT" ], "Content-Length": [ "157" @@ -225,17 +225,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Running\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"Running\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/operationResults/create/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2NyZWF0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa764d32-9395-4f2e-82a6-45cf7286043e" + "a276f02a-fe90-4b25-ae51-44c7033671d3" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -255,25 +255,25 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "westcentralus:c9f51685-4043-4f22-8288-f34eb32b142a" + "westcentralus:0898b4e9-d2c0-4c51-931f-c18f66f5cfc2" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "c9f51685-4043-4f22-8288-f34eb32b142a" + "0898b4e9-d2c0-4c51-931f-c18f66f5cfc2" ], "request-id": [ - "c9f51685-4043-4f22-8288-f34eb32b142a" + "0898b4e9-d2c0-4c51-931f-c18f66f5cfc2" ], "x-ms-correlation-request-id": [ - "c9f51685-4043-4f22-8288-f34eb32b142a" + "0898b4e9-d2c0-4c51-931f-c18f66f5cfc2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161940Z:c9f51685-4043-4f22-8288-f34eb32b142a" + "WESTCENTRALUS:20210212T173001Z:0898b4e9-d2c0-4c51-931f-c18f66f5cfc2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,10 +282,10 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:40 GMT" + "Fri, 12 Feb 2021 17:30:01 GMT" ], "Content-Length": [ - "551" + "533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -297,17 +297,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"tenantId\": \"6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"displayName\": \"ps2549\",\r\n \"details\": {\r\n \"version\": 1,\r\n \"updatedTime\": \"2021-02-11T16:19:16.2515194Z\",\r\n \"updatedBy\": \"3e2c15b3-905c-4b0f-8313-c48ae01ccdde\",\r\n \"parent\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"name\": \"6213eb75-039d-4db7-8ac7-5449ea8d42c8\",\r\n \"displayName\": \"Tenant Root Group\"\r\n }\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"tenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"displayName\": \"ps1810\",\r\n \"details\": {\r\n \"version\": 1,\r\n \"updatedTime\": \"2021-02-12T17:29:37.5815757Z\",\r\n \"updatedBy\": \"1552e634-7535-403f-b28d-1de5d2e9b076\",\r\n \"parent\": {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/AzDeploymentsPSTest\",\r\n \"name\": \"AzDeploymentsPSTest\",\r\n \"displayName\": \"Azure Deployments PowerShell Test\"\r\n }\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3410?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQxMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0101ab0-8b3f-4592-a8b3-0189468968a5" + "2d3e7694-3d72-4bfb-84f9-5cc5fc7e7745" ], "Accept-Language": [ "en-US" @@ -333,13 +333,13 @@ "11998" ], "x-ms-request-id": [ - "febb1291-1f63-4beb-9562-3af8672f2b5b" + "a0061589-5b2c-40cc-9e58-236e9f620a5a" ], "x-ms-correlation-request-id": [ - "febb1291-1f63-4beb-9562-3af8672f2b5b" + "a0061589-5b2c-40cc-9e58-236e9f620a5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161941Z:febb1291-1f63-4beb-9562-3af8672f2b5b" + "WESTCENTRALUS:20210212T173002Z:a0061589-5b2c-40cc-9e58-236e9f620a5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -348,7 +348,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:41 GMT" + "Fri, 12 Feb 2021 17:30:01 GMT" ], "Content-Length": [ "98" @@ -367,13 +367,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3410?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQxMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "Accept-Language": [ "en-US" @@ -393,16 +393,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "41f8c60f-d927-41f9-bf4e-a4f7c248c94a" + "304054d5-a1fa-4189-84e2-79a9a0800848" ], "x-ms-correlation-request-id": [ - "41f8c60f-d927-41f9-bf4e-a4f7c248c94a" + "304054d5-a1fa-4189-84e2-79a9a0800848" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162005Z:41f8c60f-d927-41f9-bf4e-a4f7c248c94a" + "WESTCENTRALUS:20210212T173025Z:304054d5-a1fa-4189-84e2-79a9a0800848" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -411,7 +411,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:05 GMT" + "Fri, 12 Feb 2021 17:30:25 GMT" ], "Content-Length": [ "0" @@ -427,13 +427,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3410?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQxMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b0101ab0-8b3f-4592-a8b3-0189468968a5" + "2d3e7694-3d72-4bfb-84f9-5cc5fc7e7745" ], "Accept-Language": [ "en-US" @@ -462,13 +462,13 @@ "1199" ], "x-ms-request-id": [ - "08069fba-7c82-489c-ba9a-12ecb84c2859" + "df02aa74-da0f-4beb-8f73-329e5700f382" ], "x-ms-correlation-request-id": [ - "08069fba-7c82-489c-ba9a-12ecb84c2859" + "df02aa74-da0f-4beb-8f73-329e5700f382" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161941Z:08069fba-7c82-489c-ba9a-12ecb84c2859" + "WESTCENTRALUS:20210212T173002Z:df02aa74-da0f-4beb-8f73-329e5700f382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -477,10 +477,10 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:41 GMT" + "Fri, 12 Feb 2021 17:30:02 GMT" ], "Content-Length": [ - "210" + "281" ], "Content-Type": [ "application/json; charset=utf-8" @@ -492,17 +492,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160\",\r\n \"name\": \"ps3160\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410\",\r\n \"name\": \"ps3410\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"tags\": {\r\n \"ic3\": \"ic3\",\r\n \"NameTag\": \"ValueTag\",\r\n \"StorageType\": \"Standard_LRS\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Ny92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16d70a33-4204-4b84-ad18-deb55b5fcabc" + "5993e6b4-78c5-485e-a38e-f49ee33a3f1e" ], "Accept-Language": [ "en-US" @@ -525,13 +525,13 @@ "gateway" ], "x-ms-request-id": [ - "2a839da9-2348-489b-a597-837c95578dd4" + "38459cd8-de07-43d6-abe0-b5a0a5dadaf6" ], "x-ms-correlation-request-id": [ - "2a839da9-2348-489b-a597-837c95578dd4" + "38459cd8-de07-43d6-abe0-b5a0a5dadaf6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161942Z:2a839da9-2348-489b-a597-837c95578dd4" + "WESTCENTRALUS:20210212T173003Z:38459cd8-de07-43d6-abe0-b5a0a5dadaf6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -540,7 +540,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:42 GMT" + "Fri, 12 Feb 2021 17:30:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,17 +555,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649/versions/v1' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3157/versions/v1' under resource group 'ps3410' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Ny92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16d70a33-4204-4b84-ad18-deb55b5fcabc" + "5993e6b4-78c5-485e-a38e-f49ee33a3f1e" ], "Accept-Language": [ "en-US" @@ -588,13 +588,13 @@ "gateway" ], "x-ms-request-id": [ - "2ef42222-5de1-4f50-b4cd-03d900df2aa1" + "e9557f05-b1f7-4a8e-8318-c00f0c7ded14" ], "x-ms-correlation-request-id": [ - "2ef42222-5de1-4f50-b4cd-03d900df2aa1" + "e9557f05-b1f7-4a8e-8318-c00f0c7ded14" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161944Z:2ef42222-5de1-4f50-b4cd-03d900df2aa1" + "WESTCENTRALUS:20210212T173005Z:e9557f05-b1f7-4a8e-8318-c00f0c7ded14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -603,7 +603,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:43 GMT" + "Fri, 12 Feb 2021 17:30:04 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,17 +618,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649/versions/v1' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3157/versions/v1' under resource group 'ps3410' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Ny92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40c42d98-cb96-43c9-b95f-85ca2d67db7c" + "db01d6a4-9fcb-4ad1-96d0-acab41cacdec" ], "Accept-Language": [ "en-US" @@ -648,7 +648,7 @@ "no-cache" ], "x-ms-request-id": [ - "1248d337-432f-43d7-8833-597fddc4f5bb" + "95d051ec-ef91-40df-81ba-09893831a827" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -657,10 +657,10 @@ "11998" ], "x-ms-correlation-request-id": [ - "545a9f88-129d-45e9-800d-f9eb8506656b" + "8d3387ff-4198-416e-bc41-00708d662e45" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161945Z:545a9f88-129d-45e9-800d-f9eb8506656b" + "WESTCENTRALUS:20210212T173006Z:8d3387ff-4198-416e-bc41-00708d662e45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -669,7 +669,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:44 GMT" + "Fri, 12 Feb 2021 17:30:05 GMT" ], "Content-Length": [ "1405" @@ -684,17 +684,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:44.5697272Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:44.5697272Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-12T17:30:05.6652188Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-12T17:30:05.6652188Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16d70a33-4204-4b84-ad18-deb55b5fcabc" + "5993e6b4-78c5-485e-a38e-f49ee33a3f1e" ], "Accept-Language": [ "en-US" @@ -717,13 +717,13 @@ "gateway" ], "x-ms-request-id": [ - "44902589-68ef-479e-9da8-c98d9daa6ac7" + "7ca0dfca-2ed3-4a55-b177-6a425e80d6b3" ], "x-ms-correlation-request-id": [ - "44902589-68ef-479e-9da8-c98d9daa6ac7" + "7ca0dfca-2ed3-4a55-b177-6a425e80d6b3" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161942Z:44902589-68ef-479e-9da8-c98d9daa6ac7" + "WESTCENTRALUS:20210212T173003Z:7ca0dfca-2ed3-4a55-b177-6a425e80d6b3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -732,7 +732,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:42 GMT" + "Fri, 12 Feb 2021 17:30:02 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -747,17 +747,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3649' under resource group 'ps3160' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps3157' under resource group 'ps3410' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16d70a33-4204-4b84-ad18-deb55b5fcabc" + "5993e6b4-78c5-485e-a38e-f49ee33a3f1e" ], "Accept-Language": [ "en-US" @@ -783,7 +783,7 @@ "no-cache" ], "x-ms-request-id": [ - "db7349dc-edaa-4aa6-abb8-13cfa8175a3d" + "3a23af54-fcc7-43c8-87bd-2f7852436549" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -792,10 +792,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "c911228a-c514-478d-b835-b98eda33f12f" + "83120bf6-101d-42f6-b765-7880f0bef775" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161943Z:c911228a-c514-478d-b835-b98eda33f12f" + "WESTCENTRALUS:20210212T173005Z:83120bf6-101d-42f6-b765-7880f0bef775" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,10 +804,10 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:43 GMT" + "Fri, 12 Feb 2021 17:30:04 GMT" ], "Content-Length": [ - "587" + "585" ], "Content-Type": [ "application/json; charset=utf-8" @@ -819,17 +819,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:43.5445951Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:43.5445951Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps3649\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-12T17:30:04.555182Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-12T17:30:04.555182Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps3157\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1?api-version=2019-06-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlR3JvdXBzL3BzMzE2MC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzY0OS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMzQxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzMzE1Ny92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "16d70a33-4204-4b84-ad18-deb55b5fcabc" + "5993e6b4-78c5-485e-a38e-f49ee33a3f1e" ], "Accept-Language": [ "en-US" @@ -855,7 +855,7 @@ "no-cache" ], "x-ms-request-id": [ - "a07595f9-9a13-4233-908b-bea87014bbd7" + "70568df0-9e58-4945-a2b8-02887d1f9fe6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -864,10 +864,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "b7de3298-d5d7-4ce8-9ec6-9459a3465890" + "47e81984-3c80-4537-aad5-e3c0a10db74d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161944Z:b7de3298-d5d7-4ce8-9ec6-9459a3465890" + "WESTCENTRALUS:20210212T173005Z:47e81984-3c80-4537-aad5-e3c0a10db74d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -876,7 +876,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:44 GMT" + "Fri, 12 Feb 2021 17:30:05 GMT" ], "Content-Length": [ "1405" @@ -891,17 +891,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-11T16:19:44.5697272Z\",\r\n \"lastModifiedBy\": \"4aff2943-da88-4cc9-846d-8881f3766d6f\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-11T16:19:44.5697272Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", + "ResponseBody": "{\r\n \"location\": \"West US 2\",\r\n \"systemData\": {\r\n \"createdBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"createdByType\": \"Application\",\r\n \"createdAt\": \"2021-02-12T17:30:05.6652188Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-12T17:30:05.6652188Z\"\r\n },\r\n \"properties\": {\r\n \"artifacts\": [],\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"description\"\r\n }\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {},\r\n \"resources\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('foo')]\"\r\n },\r\n \"bar\": {\r\n \"type\": \"string\",\r\n \"value\": \"[parameters('bar')]\"\r\n }\r\n }\r\n }\r\n },\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"type\": \"Microsoft.Resources/templateSpecs/versions\",\r\n \"name\": \"v1\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/validate?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTcvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -930,13 +930,13 @@ "1199" ], "x-ms-request-id": [ - "76dcfbd8-bfa9-4a11-a404-21c38661db70" + "596cacd0-1dc9-46bf-8d15-233468a36c3f" ], "x-ms-correlation-request-id": [ - "76dcfbd8-bfa9-4a11-a404-21c38661db70" + "596cacd0-1dc9-46bf-8d15-233468a36c3f" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161946Z:76dcfbd8-bfa9-4a11-a404-21c38661db70" + "WESTCENTRALUS:20210212T173006Z:596cacd0-1dc9-46bf-8d15-233468a36c3f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:45 GMT" + "Fri, 12 Feb 2021 17:30:06 GMT" ], "Content-Length": [ "749" @@ -960,17 +960,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:46.1241094Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"76dcfbd8-bfa9-4a11-a404-21c38661db70\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-12T17:30:06.8845473Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"596cacd0-1dc9-46bf-8d15-233468a36c3f\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"validatedResources\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"West US 2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\"\r\n },\r\n \"parameters\": {\r\n \"bar\": {\r\n \"value\": \"xyz\"\r\n },\r\n \"foo\": {\r\n \"value\": \"abc\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -996,19 +996,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operationStatuses/08585885464990716340?api-version=2020-10-01" + "https://management.azure.com/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/operationStatuses/08585884558783762810?api-version=2020-10-01" ], "x-ms-ratelimit-remaining-tenant-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "ac063935-a07c-44f7-9d24-3ed7d3ee15f9" + "2466d4af-ece4-471e-bb3b-688e22ec5ed4" ], "x-ms-correlation-request-id": [ - "ac063935-a07c-44f7-9d24-3ed7d3ee15f9" + "2466d4af-ece4-471e-bb3b-688e22ec5ed4" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161947Z:ac063935-a07c-44f7-9d24-3ed7d3ee15f9" + "WESTCENTRALUS:20210212T173007Z:2466d4af-ece4-471e-bb3b-688e22ec5ed4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,7 +1017,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:46 GMT" + "Fri, 12 Feb 2021 17:30:07 GMT" ], "Content-Length": [ "732" @@ -1032,17 +1032,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-11T16:19:46.9037747Z\",\r\n \"duration\": \"PT0.4977943S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-12T17:30:07.7193391Z\",\r\n \"duration\": \"PT0.6180147S\",\r\n \"correlationId\": \"2466d4af-ece4-471e-bb3b-688e22ec5ed4\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1062,16 +1062,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "dc18fb6d-b3cf-4512-b01b-75a001f52130" + "2c500311-974f-43d6-b077-f9fbd9427241" ], "x-ms-correlation-request-id": [ - "dc18fb6d-b3cf-4512-b01b-75a001f52130" + "2c500311-974f-43d6-b077-f9fbd9427241" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161947Z:dc18fb6d-b3cf-4512-b01b-75a001f52130" + "WESTCENTRALUS:20210212T173008Z:2c500311-974f-43d6-b077-f9fbd9427241" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1080,7 +1080,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:47 GMT" + "Fri, 12 Feb 2021 17:30:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1099,13 +1099,13 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1125,16 +1125,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "fa661bb0-5794-4bde-8e1e-8bf29ea6d300" + "429480d8-9bc4-42f2-8d82-2a3b52ef31aa" ], "x-ms-correlation-request-id": [ - "fa661bb0-5794-4bde-8e1e-8bf29ea6d300" + "429480d8-9bc4-42f2-8d82-2a3b52ef31aa" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161947Z:fa661bb0-5794-4bde-8e1e-8bf29ea6d300" + "WESTCENTRALUS:20210212T173008Z:429480d8-9bc4-42f2-8d82-2a3b52ef31aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,7 +1143,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:47 GMT" + "Fri, 12 Feb 2021 17:30:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1162,13 +1162,13 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDkvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1188,16 +1188,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "1f1caa8a-5969-4c56-afc3-c39a1b390104" + "37b2a180-e360-4a09-b035-b2d42279cc1b" ], "x-ms-correlation-request-id": [ - "1f1caa8a-5969-4c56-afc3-c39a1b390104" + "37b2a180-e360-4a09-b035-b2d42279cc1b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161948Z:1f1caa8a-5969-4c56-afc3-c39a1b390104" + "WESTCENTRALUS:20210212T173008Z:37b2a180-e360-4a09-b035-b2d42279cc1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1206,7 +1206,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:47 GMT" + "Fri, 12 Feb 2021 17:30:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1215,23 +1215,86 @@ "-1" ], "Content-Length": [ - "430" + "12" ], "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649/operations/08585885464990716340\",\r\n \"operationId\": \"08585885464990716340\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:47.9146291Z\",\r\n \"duration\": \"PT0.035798S\",\r\n \"trackingId\": \"fcf0df03-57e2-4141-84c4-1d7be5edae3e\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": []\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTcvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11993" + ], + "x-ms-request-id": [ + "cbc02dfa-ee3e-4dad-bc12-e2b543d3c0e1" + ], + "x-ms-correlation-request-id": [ + "cbc02dfa-ee3e-4dad-bc12-e2b543d3c0e1" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210212T173008Z:cbc02dfa-ee3e-4dad-bc12-e2b543d3c0e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Feb 2021 17:30:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1254,16 +1317,16 @@ "0" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "cbadc417-2c22-47d3-80d2-65ecd6f06864" + "8e42f53e-9146-4077-aa5e-c1f186b71853" ], "x-ms-correlation-request-id": [ - "cbadc417-2c22-47d3-80d2-65ecd6f06864" + "8e42f53e-9146-4077-aa5e-c1f186b71853" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161947Z:cbadc417-2c22-47d3-80d2-65ecd6f06864" + "WESTCENTRALUS:20210212T173008Z:8e42f53e-9146-4077-aa5e-c1f186b71853" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1272,7 +1335,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:47 GMT" + "Fri, 12 Feb 2021 17:30:07 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1284,17 +1347,17 @@ "731" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:19:47.2617629Z\",\r\n \"duration\": \"PT0.8557825S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-12T17:30:08.1136411Z\",\r\n \"duration\": \"PT1.0123167S\",\r\n \"correlationId\": \"2466d4af-ece4-471e-bb3b-688e22ec5ed4\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1317,16 +1380,79 @@ "0" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11992" + "11996" + ], + "x-ms-request-id": [ + "77221e4f-be65-4858-a8db-59bb3848d51d" + ], + "x-ms-correlation-request-id": [ + "77221e4f-be65-4858-a8db-59bb3848d51d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210212T173008Z:77221e4f-be65-4858-a8db-59bb3848d51d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 12 Feb 2021 17:30:08 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "731" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-12T17:30:08.1136411Z\",\r\n \"duration\": \"PT1.0123167S\",\r\n \"correlationId\": \"2466d4af-ece4-471e-bb3b-688e22ec5ed4\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e7a23c68-8386-4143-8bfd-64e697f25e7e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "11994" ], "x-ms-request-id": [ - "3215714d-198c-4ae7-982f-de82c52e058f" + "4c2d2a13-78c7-4c04-b42d-1f52083ca6cb" ], "x-ms-correlation-request-id": [ - "3215714d-198c-4ae7-982f-de82c52e058f" + "4c2d2a13-78c7-4c04-b42d-1f52083ca6cb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161947Z:3215714d-198c-4ae7-982f-de82c52e058f" + "WESTCENTRALUS:20210212T173008Z:4c2d2a13-78c7-4c04-b42d-1f52083ca6cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,7 +1461,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:47 GMT" + "Fri, 12 Feb 2021 17:30:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1347,17 +1473,17 @@ "731" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-11T16:19:47.2617629Z\",\r\n \"duration\": \"PT0.8557825S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-12T17:30:08.1136411Z\",\r\n \"duration\": \"PT1.0123167S\",\r\n \"correlationId\": \"2466d4af-ece4-471e-bb3b-688e22ec5ed4\",\r\n \"providers\": [],\r\n \"dependencies\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54f40ae2-c7a6-4de7-b9b5-61b50fcdea70" + "e7a23c68-8386-4143-8bfd-64e697f25e7e" ], "Accept-Language": [ "en-US" @@ -1377,16 +1503,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "bffb0d7b-c048-4fd5-9703-06701c2f79ca" + "3f1530d5-d12c-46fa-8f70-03483efb8302" ], "x-ms-correlation-request-id": [ - "bffb0d7b-c048-4fd5-9703-06701c2f79ca" + "3f1530d5-d12c-46fa-8f70-03483efb8302" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161948Z:bffb0d7b-c048-4fd5-9703-06701c2f79ca" + "WESTCENTRALUS:20210212T173009Z:3f1530d5-d12c-46fa-8f70-03483efb8302" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1395,7 +1521,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:48 GMT" + "Fri, 12 Feb 2021 17:30:08 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1410,17 +1536,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649\",\r\n \"name\": \"ps3649\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourceGroups/ps3160/providers/Microsoft.Resources/templateSpecs/ps3649/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-11T16:19:47.9304537Z\",\r\n \"duration\": \"PT1.5244733S\",\r\n \"correlationId\": \"ac063935-a07c-44f7-9d24-3ed7d3ee15f9\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157\",\r\n \"name\": \"ps3157\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps3410/providers/Microsoft.Resources/templateSpecs/ps3157/versions/v1\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"17257823359974361546\",\r\n \"parameters\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-12T17:30:08.8737277Z\",\r\n \"duration\": \"PT1.7724033S\",\r\n \"correlationId\": \"2466d4af-ece4-471e-bb3b-688e22ec5ed4\",\r\n \"providers\": [],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"foo\": {\r\n \"type\": \"String\",\r\n \"value\": \"abc\"\r\n },\r\n \"bar\": {\r\n \"type\": \"String\",\r\n \"value\": \"xyz\"\r\n }\r\n },\r\n \"outputResources\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46697653-b488-432d-b25f-64b30d64c0ca" + "2a31290c-0fa7-4b20-80c5-0ff3e6ea5885" ], "Accept-Language": [ "en-US" @@ -1440,16 +1566,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "d6185210-d44d-4904-b260-ef17e3463361" + "996c9a78-80bf-4c98-80e3-a57005571ea8" ], "x-ms-correlation-request-id": [ - "d6185210-d44d-4904-b260-ef17e3463361" + "996c9a78-80bf-4c98-80e3-a57005571ea8" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161948Z:d6185210-d44d-4904-b260-ef17e3463361" + "WESTCENTRALUS:20210212T173009Z:996c9a78-80bf-4c98-80e3-a57005571ea8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1458,7 +1584,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:48 GMT" + "Fri, 12 Feb 2021 17:30:08 GMT" ], "Content-Length": [ "0" @@ -1474,13 +1600,13 @@ "StatusCode": 204 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549/providers/Microsoft.Resources/deployments/ps3649?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczM2NDk/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810/providers/Microsoft.Resources/deployments/ps3157?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczMxNTc/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46697653-b488-432d-b25f-64b30d64c0ca" + "2a31290c-0fa7-4b20-80c5-0ff3e6ea5885" ], "Accept-Language": [ "en-US" @@ -1500,7 +1626,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + "https://management.azure.com/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMTgxMC1QUzMxNTctIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1509,13 +1635,13 @@ "14999" ], "x-ms-request-id": [ - "43176c75-679d-48a5-bb82-4a8a0969c3a6" + "710c45cb-b40b-49d3-bda8-c22a0c96eb49" ], "x-ms-correlation-request-id": [ - "43176c75-679d-48a5-bb82-4a8a0969c3a6" + "710c45cb-b40b-49d3-bda8-c22a0c96eb49" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T161949Z:43176c75-679d-48a5-bb82-4a8a0969c3a6" + "WESTCENTRALUS:20210212T173010Z:710c45cb-b40b-49d3-bda8-c22a0c96eb49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1524,7 +1650,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:19:49 GMT" + "Fri, 12 Feb 2021 17:30:09 GMT" ], "Expires": [ "-1" @@ -1537,13 +1663,13 @@ "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1qVTBPUzFRVXpNMk5Ea3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMTgxMC1QUzMxNTctIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1UZ3hNQzFRVXpNeE5UY3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46697653-b488-432d-b25f-64b30d64c0ca" + "2a31290c-0fa7-4b20-80c5-0ff3e6ea5885" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1560,16 +1686,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "aa7007e5-3744-4b6f-91d0-54abb95db0c4" + "92c89700-a6fe-44d1-8c84-fcd2936648a1" ], "x-ms-correlation-request-id": [ - "aa7007e5-3744-4b6f-91d0-54abb95db0c4" + "92c89700-a6fe-44d1-8c84-fcd2936648a1" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162004Z:aa7007e5-3744-4b6f-91d0-54abb95db0c4" + "WESTCENTRALUS:20210212T173025Z:92c89700-a6fe-44d1-8c84-fcd2936648a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1578,7 +1704,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:04 GMT" + "Fri, 12 Feb 2021 17:30:24 GMT" ], "Expires": [ "-1" @@ -1591,13 +1717,13 @@ "StatusCode": 204 }, { - "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMjU0OS1QUzM2NDktIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1qVTBPUzFRVXpNMk5Ea3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/providers/Microsoft.Resources/operationResults/eyJqb2JJZCI6IkRlcGxveW1lbnREZWxldGlvbkpvYi1NR05TLVBTMTgxMC1QUzMxNTctIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL29wZXJhdGlvblJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SRVpXeGxkR2x2YmtwdllpMU5SMDVUTFZCVE1UZ3hNQzFRVXpNeE5UY3RJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46697653-b488-432d-b25f-64b30d64c0ca" + "2a31290c-0fa7-4b20-80c5-0ff3e6ea5885" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1614,16 +1740,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "c450d629-6633-47c4-8bd7-c66d6fbd40eb" + "14413c7f-4609-40b2-ba28-147a505f5eb9" ], "x-ms-correlation-request-id": [ - "c450d629-6633-47c4-8bd7-c66d6fbd40eb" + "14413c7f-4609-40b2-ba28-147a505f5eb9" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162004Z:c450d629-6633-47c4-8bd7-c66d6fbd40eb" + "WESTCENTRALUS:20210212T173025Z:14413c7f-4609-40b2-ba28-147a505f5eb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,7 +1758,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:04 GMT" + "Fri, 12 Feb 2021 17:30:24 GMT" ], "Expires": [ "-1" @@ -1645,13 +1771,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/resourcegroups/ps3160?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL3Jlc291cmNlZ3JvdXBzL3BzMzE2MD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps3410?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMzQxMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "Accept-Language": [ "en-US" @@ -1671,7 +1797,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" @@ -1680,13 +1806,13 @@ "14999" ], "x-ms-request-id": [ - "3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" + "e5276d93-5ed8-4d6c-a1f7-53520b65a3bb" ], "x-ms-correlation-request-id": [ - "3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" + "e5276d93-5ed8-4d6c-a1f7-53520b65a3bb" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162006Z:3b3ce84b-d9b5-4a24-a1f6-1c59971b6a9c" + "WESTCENTRALUS:20210212T173026Z:e5276d93-5ed8-4d6c-a1f7-53520b65a3bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1695,7 +1821,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:06 GMT" + "Fri, 12 Feb 2021 17:30:26 GMT" ], "Expires": [ "-1" @@ -1708,13 +1834,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1731,22 +1857,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "bb07476b-6957-479a-86ab-5893f97d6cde" + "3f451eab-e023-49c0-9dd9-6602181dfc89" ], "x-ms-correlation-request-id": [ - "bb07476b-6957-479a-86ab-5893f97d6cde" + "3f451eab-e023-49c0-9dd9-6602181dfc89" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162021Z:bb07476b-6957-479a-86ab-5893f97d6cde" + "WESTCENTRALUS:20210212T173041Z:3f451eab-e023-49c0-9dd9-6602181dfc89" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1755,7 +1881,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:21 GMT" + "Fri, 12 Feb 2021 17:30:41 GMT" ], "Expires": [ "-1" @@ -1768,13 +1894,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1791,22 +1917,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "b3404bf8-8fa7-4a00-9632-9d101bf18652" + "9a83fe4d-d1bc-4118-8d69-bad0a8ae8342" ], "x-ms-correlation-request-id": [ - "b3404bf8-8fa7-4a00-9632-9d101bf18652" + "9a83fe4d-d1bc-4118-8d69-bad0a8ae8342" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162036Z:b3404bf8-8fa7-4a00-9632-9d101bf18652" + "WESTCENTRALUS:20210212T173056Z:9a83fe4d-d1bc-4118-8d69-bad0a8ae8342" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,7 +1941,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:36 GMT" + "Fri, 12 Feb 2021 17:30:56 GMT" ], "Expires": [ "-1" @@ -1828,13 +1954,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1851,22 +1977,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "ed96ce56-8481-48db-bbb7-5baf7cb488e8" + "937baaa6-99ed-4f73-8353-555ba3fd74c7" ], "x-ms-correlation-request-id": [ - "ed96ce56-8481-48db-bbb7-5baf7cb488e8" + "937baaa6-99ed-4f73-8353-555ba3fd74c7" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162051Z:ed96ce56-8481-48db-bbb7-5baf7cb488e8" + "WESTCENTRALUS:20210212T173111Z:937baaa6-99ed-4f73-8353-555ba3fd74c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1875,7 +2001,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:20:51 GMT" + "Fri, 12 Feb 2021 17:31:11 GMT" ], "Expires": [ "-1" @@ -1888,13 +2014,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1911,22 +2037,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-request-id": [ - "619828dd-8fa3-41ae-a898-de67f1068f04" + "f027b353-a4b6-4706-baca-a3a8a9a669fc" ], "x-ms-correlation-request-id": [ - "619828dd-8fa3-41ae-a898-de67f1068f04" + "f027b353-a4b6-4706-baca-a3a8a9a669fc" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162106Z:619828dd-8fa3-41ae-a898-de67f1068f04" + "WESTCENTRALUS:20210212T173126Z:f027b353-a4b6-4706-baca-a3a8a9a669fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1935,7 +2061,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:06 GMT" + "Fri, 12 Feb 2021 17:31:26 GMT" ], "Expires": [ "-1" @@ -1948,13 +2074,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1971,22 +2097,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-request-id": [ - "a9e21276-4733-4a44-b69c-b01bd30b5f74" + "1d3218d2-dab3-42ef-a74e-34d65361709a" ], "x-ms-correlation-request-id": [ - "a9e21276-4733-4a44-b69c-b01bd30b5f74" + "1d3218d2-dab3-42ef-a74e-34d65361709a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162121Z:a9e21276-4733-4a44-b69c-b01bd30b5f74" + "WESTCENTRALUS:20210212T173142Z:1d3218d2-dab3-42ef-a74e-34d65361709a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,7 +2121,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:21 GMT" + "Fri, 12 Feb 2021 17:31:41 GMT" ], "Expires": [ "-1" @@ -2008,13 +2134,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2031,22 +2157,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "Retry-After": [ "0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "9d97b974-5224-41e7-89bf-778257cdb900" + "d64f0109-14e3-46f9-a223-ef9b93b20374" ], "x-ms-correlation-request-id": [ - "9d97b974-5224-41e7-89bf-778257cdb900" + "d64f0109-14e3-46f9-a223-ef9b93b20374" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162137Z:9d97b974-5224-41e7-89bf-778257cdb900" + "WESTCENTRALUS:20210212T173157Z:d64f0109-14e3-46f9-a223-ef9b93b20374" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,7 +2181,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:36 GMT" + "Fri, 12 Feb 2021 17:31:56 GMT" ], "Expires": [ "-1" @@ -2068,13 +2194,13 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2091,16 +2217,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-request-id": [ - "66cf99ac-56e4-45db-bb52-039913371b35" + "f46d4ffa-2228-45ea-a2eb-9895633ca201" ], "x-ms-correlation-request-id": [ - "66cf99ac-56e4-45db-bb52-039913371b35" + "f46d4ffa-2228-45ea-a2eb-9895633ca201" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162152Z:66cf99ac-56e4-45db-bb52-039913371b35" + "WESTCENTRALUS:20210212T173212Z:f46d4ffa-2228-45ea-a2eb-9895633ca201" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,7 +2235,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:51 GMT" + "Fri, 12 Feb 2021 17:32:11 GMT" ], "Expires": [ "-1" @@ -2125,13 +2251,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce7f58b7-53c8-4806-ad09-18b516f85d4a/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzMxNjAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U3ZjU4YjctNTNjOC00ODA2LWFkMDktMThiNTE2Zjg1ZDRhL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNeE5qQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzM0MTAtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpNME1UQXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "16c6da34-aca7-4aed-8ca5-bc522a8bf97f" + "b87701e2-56e6-4886-8d83-45d3da944e57" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2148,16 +2274,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-request-id": [ - "28e04d93-755f-4ced-b1ac-0ae60c2bc922" + "567b99b1-044f-45a7-a9b8-d6cb110cb1ed" ], "x-ms-correlation-request-id": [ - "28e04d93-755f-4ced-b1ac-0ae60c2bc922" + "567b99b1-044f-45a7-a9b8-d6cb110cb1ed" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162152Z:28e04d93-755f-4ced-b1ac-0ae60c2bc922" + "WESTCENTRALUS:20210212T173212Z:567b99b1-044f-45a7-a9b8-d6cb110cb1ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2166,7 +2292,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:51 GMT" + "Fri, 12 Feb 2021 17:32:11 GMT" ], "Expires": [ "-1" @@ -2182,13 +2308,13 @@ "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "182da2fa-3410-4602-a68b-de99208689ff" + "d6b1b286-7cc6-4a46-949e-8880340957a4" ], "Cache-Control": [ "no-cache" @@ -2211,31 +2337,31 @@ "no-cache" ], "Location": [ - "https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview" + "https://management.azure.com/providers/Microsoft.Management/operationResults/delete/managementGroups/ps1810?api-version=2018-03-01-preview" ], "Retry-After": [ "0" ], "x-ms-request-id": [ - "westcentralus:312ed484-70ed-46bc-9ff9-6657809d292b" + "westcentralus:c327451b-98e1-437f-b083-5925a787f581" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "312ed484-70ed-46bc-9ff9-6657809d292b" + "c327451b-98e1-437f-b083-5925a787f581" ], "request-id": [ - "312ed484-70ed-46bc-9ff9-6657809d292b" + "c327451b-98e1-437f-b083-5925a787f581" ], "x-ms-ratelimit-remaining-tenant-deletes": [ "14999" ], "x-ms-correlation-request-id": [ - "312ed484-70ed-46bc-9ff9-6657809d292b" + "c327451b-98e1-437f-b083-5925a787f581" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162154Z:312ed484-70ed-46bc-9ff9-6657809d292b" + "WESTCENTRALUS:20210212T173213Z:c327451b-98e1-437f-b083-5925a787f581" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2244,7 +2370,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:21:53 GMT" + "Fri, 12 Feb 2021 17:32:13 GMT" ], "Content-Length": [ "160" @@ -2256,17 +2382,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"NotStarted\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"NotStarted\"\r\n}", "StatusCode": 202 }, { - "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "182da2fa-3410-4602-a68b-de99208689ff" + "d6b1b286-7cc6-4a46-949e-8880340957a4" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2286,25 +2412,25 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11999" + "11997" ], "x-ms-request-id": [ - "westcentralus:12f69433-fc6d-45f6-b214-4126f53d09be" + "westcentralus:6a12ac9d-8b06-40c5-a3db-176cb340a790" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "12f69433-fc6d-45f6-b214-4126f53d09be" + "6a12ac9d-8b06-40c5-a3db-176cb340a790" ], "request-id": [ - "12f69433-fc6d-45f6-b214-4126f53d09be" + "6a12ac9d-8b06-40c5-a3db-176cb340a790" ], "x-ms-correlation-request-id": [ - "12f69433-fc6d-45f6-b214-4126f53d09be" + "6a12ac9d-8b06-40c5-a3db-176cb340a790" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162204Z:12f69433-fc6d-45f6-b214-4126f53d09be" + "WESTCENTRALUS:20210212T173223Z:6a12ac9d-8b06-40c5-a3db-176cb340a790" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2313,7 +2439,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:22:03 GMT" + "Fri, 12 Feb 2021 17:32:23 GMT" ], "Content-Length": [ "159" @@ -2328,17 +2454,17 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps2549?api-version=2018-03-01-preview", - "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMjU0OT9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", + "RequestUri": "/providers/Microsoft.Management/operationResults/delete/managementGroups/ps1810?api-version=2018-03-01-preview", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9vcGVyYXRpb25SZXN1bHRzL2RlbGV0ZS9tYW5hZ2VtZW50R3JvdXBzL3BzMTgxMD9hcGktdmVyc2lvbj0yMDE4LTAzLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "182da2fa-3410-4602-a68b-de99208689ff" + "d6b1b286-7cc6-4a46-949e-8880340957a4" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -2358,25 +2484,25 @@ "Accept-Encoding" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11998" + "11996" ], "x-ms-request-id": [ - "westcentralus:49cd319a-cc6d-4536-84ec-d460a7f60bbc" + "westcentralus:b5fc0cc4-4e91-4756-9e1e-105ce67ad257" ], "x-ba-restapi": [ "1.0.3.1594" ], "client-request-id": [ - "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + "b5fc0cc4-4e91-4756-9e1e-105ce67ad257" ], "request-id": [ - "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + "b5fc0cc4-4e91-4756-9e1e-105ce67ad257" ], "x-ms-correlation-request-id": [ - "49cd319a-cc6d-4536-84ec-d460a7f60bbc" + "b5fc0cc4-4e91-4756-9e1e-105ce67ad257" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T162204Z:49cd319a-cc6d-4536-84ec-d460a7f60bbc" + "WESTCENTRALUS:20210212T173223Z:b5fc0cc4-4e91-4756-9e1e-105ce67ad257" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2385,7 +2511,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 16:22:03 GMT" + "Fri, 12 Feb 2021 17:32:23 GMT" ], "Content-Length": [ "159" @@ -2400,18 +2526,18 @@ "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps2549\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps2549\",\r\n \"status\": \"Succeeded\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/providers/Microsoft.Management/managementGroups/ps1810\",\r\n \"type\": \"/providers/Microsoft.Management/managementGroups\",\r\n \"name\": \"ps1810\",\r\n \"status\": \"Succeeded\"\r\n}", "StatusCode": 200 } ], "Names": { "Test-NewMGDeploymentFromTemplateSpec": [ - "ps3160", - "ps3649", - "ps2549" + "ps3410", + "ps3157", + "ps1810" ] }, "Variables": { - "SubscriptionId": "ce7f58b7-53c8-4806-ad09-18b516f85d4a" + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" } } \ No newline at end of file