diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs index 6c81bb2b508c..a057ed60347a 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs @@ -17,11 +17,13 @@ using System.Collections.Generic; using System.Linq; using System.Management.Automation; +using System.Net; using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Utilities; using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json.Linq; @@ -48,6 +50,7 @@ public abstract class ResourceWithParameterCmdletBase : ResourceManagerCmdletBas protected const string TemplateSpecResourceIdParameterSetName = "ByTemplateSpecResourceId"; protected const string TemplateSpecResourceIdParameterFileParameterSetName = "ByTemplateSpecResourceIdAndParams"; protected const string TemplateSpecResourceIdParameterUriParameterSetName = "ByTemplateSpecResourceIdAndParamsUri"; + protected const string TemplateSpecResourceIdParameterObjectParameterSetName = "ByTemplateSpecResourceIdAndParamsObject"; protected RuntimeDefinedParameterDictionary dynamicParameters; @@ -74,6 +77,8 @@ protected ResourceWithParameterCmdletBase() Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents the parameters.")] [Parameter(ParameterSetName = TemplateUriParameterObjectParameterSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents the parameters.")] + [Parameter(ParameterSetName = TemplateSpecResourceIdParameterObjectParameterSetName, + Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "A hash table which represents the parameters.")] public Hashtable TemplateParameterObject { get; set; } [Parameter(ParameterSetName = TemplateObjectParameterFileParameterSetName, @@ -137,6 +142,8 @@ protected ResourceWithParameterCmdletBase() Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of the templateSpec to be deployed.")] [Parameter(ParameterSetName = TemplateSpecResourceIdParameterFileParameterSetName, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of the templateSpec to be deployed.")] + [Parameter(ParameterSetName = TemplateSpecResourceIdParameterObjectParameterSetName, + Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = "Resource ID of the templateSpec to be deployed.")] [ValidateNotNullOrEmpty] public string TemplateSpecId { get; set; } @@ -261,19 +268,32 @@ public virtual object GetDynamicParameters() // context. Force the client to use that subscription: TemplateSpecsClient.SubscriptionId = resourceIdentifier.Subscription; } + JObject templateObj = (JObject)null; + try + { + var templateSpecVersion = TemplateSpecsClient.TemplateSpecVersions.Get( + ResourceIdUtility.GetResourceGroupName(templateSpecId), + ResourceIdUtility.GetResourceName(templateSpecId).Split('/')[0], + resourceIdentifier.ResourceName); - var templateSpecVersion = TemplateSpecsClient.TemplateSpecVersions.Get( - ResourceIdUtility.GetResourceGroupName(templateSpecId), - ResourceIdUtility.GetResourceName(templateSpecId).Split('/')[0], - resourceIdentifier.ResourceName); - - if (!(templateSpecVersion.Template is JObject)) + if (!(templateSpecVersion.Template is JObject)) + { + throw new InvalidOperationException("Unexpected type."); // Sanity check + } + templateObj = (JObject)templateSpecVersion.Template; + } + catch (TemplateSpecsErrorException e) { - throw new InvalidOperationException("Unexpected type."); // Sanity check + //If the templateSpec resourceID is pointing to a non existant resource + if(e.Response.StatusCode.Equals(HttpStatusCode.NotFound)) + { + //By returning null, we are introducing parity in the way templateURI and templateSpecId are validated. Gives a cleaner error message in line with the error message for invalid templateURI + return null; + } + //Throw for any other error that is not due to a 404 for the template resource. + throw; } - JObject templateObj = (JObject)templateSpecVersion.Template; - if (string.IsNullOrEmpty(TemplateParameterUri)) { dynamicParameters = TemplateUtility.GetTemplateParametersFromFile( diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 1f9a6ba77af4..4d161b221a95 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -199,14 +199,14 @@ function Test-NewFailedSubscriptionDeploymentFromTemplateSpec $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" + $resourceId = $basicCreatedTemplateSpec.Id + "/versions/v2" #Create deployment try { $deployment = New-AzSubscriptionDeployment -Name $rname -TemplateSpecId $resourceId -TemplateParameterFile "subscription_level_parameters.json" -Location $rglocation } Catch { - Assert-True { $Error[0].Contains("ResourceNotFound")} + Assert-true { $Error[0].exception.message.Contains("InvalidTemplateSpec") } } } 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 index bdddc5f5ea1a..2b1f3b2e3b65 100644 --- 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 @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps1599?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMTU5OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f8f44e-f123-44e7-ae7b-05517124c75e" + "46edd7c8-c86f-4f05-98f6-c2bcd15125b9" ], "Accept-Language": [ "en-US" @@ -30,16 +30,16 @@ "gateway" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "ab60823c-6030-4862-a6b3-4e5696ea1782" + "f58c8a78-765e-4dab-9669-d0d094e1d384" ], "x-ms-correlation-request-id": [ - "ab60823c-6030-4862-a6b3-4e5696ea1782" + "f58c8a78-765e-4dab-9669-d0d094e1d384" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195120Z:ab60823c-6030-4862-a6b3-4e5696ea1782" + "WESTCENTRALUS:20210218T213728Z:f58c8a78-765e-4dab-9669-d0d094e1d384" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,7 +48,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:20 GMT" + "Thu, 18 Feb 2021 21:37:28 GMT" ], "Content-Length": [ "98" @@ -67,13 +67,13 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps1599?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMTU5OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "HEAD", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "737de58e-fbf5-4d7c-84c1-8d0d1fb42142" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "Accept-Language": [ "en-US" @@ -96,13 +96,13 @@ "11996" ], "x-ms-request-id": [ - "2f014a9f-4aab-44b8-a11f-ca802442abb6" + "70349728-d67d-461c-a950-811d1f506379" ], "x-ms-correlation-request-id": [ - "2f014a9f-4aab-44b8-a11f-ca802442abb6" + "70349728-d67d-461c-a950-811d1f506379" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195138Z:2f014a9f-4aab-44b8-a11f-ca802442abb6" + "WESTCENTRALUS:20210218T213734Z:70349728-d67d-461c-a950-811d1f506379" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:37 GMT" + "Thu, 18 Feb 2021 21:37:33 GMT" ], "Content-Length": [ "0" @@ -127,13 +127,13 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps9632?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzOTYzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps1599?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMTU5OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b5f8f44e-f123-44e7-ae7b-05517124c75e" + "46edd7c8-c86f-4f05-98f6-c2bcd15125b9" ], "Accept-Language": [ "en-US" @@ -159,16 +159,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "91f467b4-a296-4721-b198-4b1221cda2b0" + "fabfc9b4-d923-4694-9651-944e0cbffe3a" ], "x-ms-correlation-request-id": [ - "91f467b4-a296-4721-b198-4b1221cda2b0" + "fabfc9b4-d923-4694-9651-944e0cbffe3a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195120Z:91f467b4-a296-4721-b198-4b1221cda2b0" + "WESTCENTRALUS:20210218T213730Z:fabfc9b4-d923-4694-9651-944e0cbffe3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -177,7 +177,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:20 GMT" + "Thu, 18 Feb 2021 21:37:29 GMT" ], "Content-Length": [ "281" @@ -192,17 +192,17 @@ "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}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599\",\r\n \"name\": \"ps1599\",\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=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7882978-a5d7-4865-91f7-e5cf134ca46e" + "fce16409-45aa-4005-b9cb-faf4b0bd4dcc" ], "Accept-Language": [ "en-US" @@ -225,13 +225,13 @@ "gateway" ], "x-ms-request-id": [ - "b5a16e8d-d300-459e-96bb-84cad0f2b356" + "3c64dd37-b49c-40e2-8d85-c6e9882409e2" ], "x-ms-correlation-request-id": [ - "b5a16e8d-d300-459e-96bb-84cad0f2b356" + "3c64dd37-b49c-40e2-8d85-c6e9882409e2" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195121Z:b5a16e8d-d300-459e-96bb-84cad0f2b356" + "WESTCENTRALUS:20210218T213730Z:3c64dd37-b49c-40e2-8d85-c6e9882409e2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -240,7 +240,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:20 GMT" + "Thu, 18 Feb 2021 21:37:29 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/ps7432/versions/v1' under resource group 'ps9632' 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/ps7995/versions/v1' under resource group 'ps1599' 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=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7882978-a5d7-4865-91f7-e5cf134ca46e" + "fce16409-45aa-4005-b9cb-faf4b0bd4dcc" ], "Accept-Language": [ "en-US" @@ -288,13 +288,13 @@ "gateway" ], "x-ms-request-id": [ - "198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + "89a1b802-5332-4de8-87a9-a480982a113b" ], "x-ms-correlation-request-id": [ - "198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + "89a1b802-5332-4de8-87a9-a480982a113b" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195122Z:198ef1cd-3f9b-4467-a1c0-d6fc195e4fbc" + "WESTCENTRALUS:20210218T213732Z:89a1b802-5332-4de8-87a9-a480982a113b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -303,7 +303,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:22 GMT" + "Thu, 18 Feb 2021 21:37:31 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -318,83 +318,17 @@ "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7995/versions/v1' under resource group 'ps1599' 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=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d7882978-a5d7-4865-91f7-e5cf134ca46e" + "fce16409-45aa-4005-b9cb-faf4b0bd4dcc" ], "Accept-Language": [ "en-US" @@ -417,13 +351,13 @@ "gateway" ], "x-ms-request-id": [ - "7f3b00d1-c3e1-4d17-ba90-947641d6698e" + "69aa3bf4-08ab-407a-af21-5b6bd9533f5a" ], "x-ms-correlation-request-id": [ - "7f3b00d1-c3e1-4d17-ba90-947641d6698e" + "69aa3bf4-08ab-407a-af21-5b6bd9533f5a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195121Z:7f3b00d1-c3e1-4d17-ba90-947641d6698e" + "WESTCENTRALUS:20210218T213730Z:69aa3bf4-08ab-407a-af21-5b6bd9533f5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -432,7 +366,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:20 GMT" + "Thu, 18 Feb 2021 21:37:29 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,17 +381,17 @@ "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}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7995' under resource group 'ps1599' 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=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d7882978-a5d7-4865-91f7-e5cf134ca46e" + "fce16409-45aa-4005-b9cb-faf4b0bd4dcc" ], "Accept-Language": [ "en-US" @@ -483,7 +417,7 @@ "no-cache" ], "x-ms-request-id": [ - "7d710cbd-32e2-4e63-8250-528eb8af0d91" + "6d99225c-8e3b-4110-9620-dcc6322c76f6" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -492,10 +426,10 @@ "1199" ], "x-ms-correlation-request-id": [ - "5f92d419-4c23-49b6-b1f8-8d95b465c1d6" + "092154f2-6677-46ca-af98-d048261d68c6" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195122Z:5f92d419-4c23-49b6-b1f8-8d95b465c1d6" + "WESTCENTRALUS:20210218T213731Z:092154f2-6677-46ca-af98-d048261d68c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -504,7 +438,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:21 GMT" + "Thu, 18 Feb 2021 21:37:31 GMT" ], "Content-Length": [ "587" @@ -519,17 +453,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-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}", + "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-18T21:37:31.6506286Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-18T21:37:31.6506286Z\"\r\n },\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995\",\r\n \"type\": \"Microsoft.Resources/templateSpecs\",\r\n \"name\": \"ps7995\"\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=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v1?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NS92ZXJzaW9ucy92MT9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", "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" + "fce16409-45aa-4005-b9cb-faf4b0bd4dcc" ], "Accept-Language": [ "en-US" @@ -555,7 +489,7 @@ "no-cache" ], "x-ms-request-id": [ - "232a61a3-fa8c-4136-bd2e-9aed43b6132e" + "d5bd96c7-ecd1-4cfa-b8a7-912ff9ce08bb" ], "Server": [ "Microsoft-HTTPAPI/2.0" @@ -564,10 +498,10 @@ "1198" ], "x-ms-correlation-request-id": [ - "36a4ff8e-3df1-48e0-ae92-a2295e5b7d96" + "ca93ed2c-2a4c-4d8a-a02f-c5bae30795cf" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195123Z:36a4ff8e-3df1-48e0-ae92-a2295e5b7d96" + "WESTCENTRALUS:20210218T213732Z:ca93ed2c-2a4c-4d8a-a02f-c5bae30795cf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -576,7 +510,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:22 GMT" + "Thu, 18 Feb 2021 21:37:32 GMT" ], "Content-Length": [ "3473" @@ -591,17 +525,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-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}", + "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-18T21:37:32.6356951Z\",\r\n \"lastModifiedBy\": \"546094f3-32fa-493c-824c-bd9575b0d2fe\",\r\n \"lastModifiedByType\": \"Application\",\r\n \"lastModifiedAt\": \"2021-02-18T21:37:32.6356951Z\"\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/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/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}", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v2?api-version=2019-06-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzMTU5OS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy90ZW1wbGF0ZVNwZWNzL3BzNzk5NS92ZXJzaW9ucy92Mj9hcGktdmVyc2lvbj0yMDE5LTA2LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" + "cd075222-cd6e-40a0-9852-9e39ae041c8f" ], "Accept-Language": [ "en-US" @@ -610,13 +544,7 @@ "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" + "Microsoft.Azure.Management.ResourceManager.TemplateSpecsClient/3.11.0.0" ] }, "ResponseHeaders": { @@ -626,17 +554,17 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-failure-cause": [ + "gateway" ], "x-ms-request-id": [ - "eac87c29-3479-4a12-94ac-3f84913ba7b6" + "b1a99797-bea8-4985-bb98-3cdea7a0fa80" ], "x-ms-correlation-request-id": [ - "eac87c29-3479-4a12-94ac-3f84913ba7b6" + "b1a99797-bea8-4985-bb98-3cdea7a0fa80" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195125Z:eac87c29-3479-4a12-94ac-3f84913ba7b6" + "WESTCENTRALUS:20210218T213733Z:b1a99797-bea8-4985-bb98-3cdea7a0fa80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -645,10 +573,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:25 GMT" - ], - "Content-Length": [ - "2783" + "Thu, 18 Feb 2021 21:37:32 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -656,21 +581,24 @@ "Expires": [ "-1" ], + "Content-Length": [ + "230" + ], "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 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Resources/templateSpecs/ps7995/versions/v2' under resource group 'ps1599' 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/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}", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7995/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzk5NS92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "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/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v2\"\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" + "e0549ca4-ea3c-43ce-b16e-e30ec6e0b9bd" ], "Accept-Language": [ "en-US" @@ -695,20 +623,20 @@ "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-failure-cause": [ + "gateway" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + "d9d5b55e-6b24-4a82-9d44-0448db38c7df" ], "x-ms-correlation-request-id": [ - "cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + "d9d5b55e-6b24-4a82-9d44-0448db38c7df" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195126Z:cc413f44-14e8-4c9e-aeae-9f68d2c6043d" + "WESTCENTRALUS:20210218T213733Z:d9d5b55e-6b24-4a82-9d44-0448db38c7df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,10 +645,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:26 GMT" - ], - "Content-Length": [ - "2081" + "Thu, 18 Feb 2021 21:37:33 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -728,21 +653,24 @@ "Expires": [ "-1" ], + "Content-Length": [ + "478" + ], "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 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidTemplateSpec\",\r\n \"message\": \"Unable to retrieve the template content from the resource ID '/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps1599/providers/Microsoft.Resources/templateSpecs/ps7995/versions/v2'. Please see https://aka.ms/arm-deploy for usage details. Diagnostic information: timestamp '20210218T213733Z', tracking Id 'd9d5b55e-6b24-4a82-9d44-0448db38c7df', request correlation Id 'd9d5b55e-6b24-4a82-9d44-0448db38c7df'.\"\r\n }\r\n}", + "StatusCode": 400 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps1599?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzMTU5OT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "Accept-Language": [ "en-US" @@ -761,80 +689,23 @@ "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" + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" ], "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-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "bbca3514-5664-4e1a-8c3a-d055a4685735" + "da60afd2-d31f-49ea-ba5d-c59fd35d0dca" ], "x-ms-correlation-request-id": [ - "bbca3514-5664-4e1a-8c3a-d055a4685735" + "da60afd2-d31f-49ea-ba5d-c59fd35d0dca" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195127Z:bbca3514-5664-4e1a-8c3a-d055a4685735" + "WESTCENTRALUS:20210218T213734Z:da60afd2-d31f-49ea-ba5d-c59fd35d0dca" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -843,35 +714,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:26 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:37:34 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "12" - ], - "Retry-After": [ "0" ] }, - "ResponseBody": "{\r\n \"value\": []\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -887,17 +749,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ "11995" ], "x-ms-request-id": [ - "d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + "ae625e7f-df7b-4061-ae0b-a7cc92c7ac1d" ], "x-ms-correlation-request-id": [ - "d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + "ae625e7f-df7b-4061-ae0b-a7cc92c7ac1d" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195127Z:d153ee87-02e9-4a5a-891a-4f2e185d0bb1" + "WESTCENTRALUS:20210218T213750Z:ae625e7f-df7b-4061-ae0b-a7cc92c7ac1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,35 +774,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:37:49 GMT" ], "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 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -950,17 +809,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "1fefc70e-6014-4233-9297-d042a3321dc2" + "04ee22e9-d03a-4ef8-beb6-72970824889c" ], "x-ms-correlation-request-id": [ - "1fefc70e-6014-4233-9297-d042a3321dc2" + "04ee22e9-d03a-4ef8-beb6-72970824889c" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195127Z:1fefc70e-6014-4233-9297-d042a3321dc2" + "WESTCENTRALUS:20210218T213805Z:04ee22e9-d03a-4ef8-beb6-72970824889c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,35 +834,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:38:04 GMT" ], "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 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1013,17 +869,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-request-id": [ - "28c09c0d-4714-48ed-bf6a-42596f8ecf87" + "616b6c1d-e840-4ba3-adca-9e1eaac1a23e" ], "x-ms-correlation-request-id": [ - "28c09c0d-4714-48ed-bf6a-42596f8ecf87" + "616b6c1d-e840-4ba3-adca-9e1eaac1a23e" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195128Z:28c09c0d-4714-48ed-bf6a-42596f8ecf87" + "WESTCENTRALUS:20210218T213820Z:616b6c1d-e840-4ba3-adca-9e1eaac1a23e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,35 +894,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:27 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:38:19 GMT" ], "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 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1076,17 +929,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11992" ], "x-ms-request-id": [ - "0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + "fa81fac4-fdc6-4a8f-b43e-92a564bef54a" ], "x-ms-correlation-request-id": [ - "0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + "fa81fac4-fdc6-4a8f-b43e-92a564bef54a" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195128Z:0ca6cf32-f8b4-44e8-9bb9-ab9f30efdcc5" + "WESTCENTRALUS:20210218T213835Z:fa81fac4-fdc6-4a8f-b43e-92a564bef54a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,35 +954,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:38:34 GMT" ], "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 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1139,17 +989,23 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-request-id": [ - "b57676c8-7da1-4a0e-a703-02af8f960c76" + "894e559d-30b8-4cb6-b213-cd602957b7fd" ], "x-ms-correlation-request-id": [ - "b57676c8-7da1-4a0e-a703-02af8f960c76" + "894e559d-30b8-4cb6-b213-cd602957b7fd" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195128Z:b57676c8-7da1-4a0e-a703-02af8f960c76" + "WESTCENTRALUS:20210218T213850Z:894e559d-30b8-4cb6-b213-cd602957b7fd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,35 +1014,26 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:28 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:38:49 GMT" ], "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 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03f92735-5031-4021-b360-d936a52b105b" - ], - "Accept-Language": [ - "en-US" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -1203,16 +1050,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11990" ], "x-ms-request-id": [ - "dc523307-c09a-4a10-8425-31e32a67360f" + "7e1d0060-a90f-4b2f-8b4b-da522dfee614" ], "x-ms-correlation-request-id": [ - "dc523307-c09a-4a10-8425-31e32a67360f" + "7e1d0060-a90f-4b2f-8b4b-da522dfee614" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195129Z:dc523307-c09a-4a10-8425-31e32a67360f" + "WESTCENTRALUS:20210218T213905Z:7e1d0060-a90f-4b2f-8b4b-da522dfee614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,3944 +1068,29 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:51:29 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Thu, 18 Feb 2021 21:39:04 GMT" ], "Expires": [ "-1" ], "Content-Length": [ - "2758" + "0" ], "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}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Resources/deployments/ps7432/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNzQzMi9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzE1OTktV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpFMU9Ua3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", "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" + "14009518-bf81-4dfa-b387-c0dafa8499f8" ], "User-Agent": [ "FxVersion/4.6.29719.03", @@ -5178,70 +1110,13 @@ "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" + "627edf09-8e72-47c3-a04a-7302724faf29" ], "x-ms-correlation-request-id": [ - "379eaba2-2a37-4e73-a18b-82ef43f7b561" + "627edf09-8e72-47c3-a04a-7302724faf29" ], "x-ms-routing-request-id": [ - "WESTCENTRALUS:20210211T195325Z:379eaba2-2a37-4e73-a18b-82ef43f7b561" + "WESTCENTRALUS:20210218T213905Z:627edf09-8e72-47c3-a04a-7302724faf29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -5250,7 +1125,7 @@ "nosniff" ], "Date": [ - "Thu, 11 Feb 2021 19:53:25 GMT" + "Thu, 18 Feb 2021 21:39:05 GMT" ], "Expires": [ "-1" @@ -5268,8 +1143,8 @@ ], "Names": { "Test-NewFailedSubscriptionDeploymentFromTemplateSpec": [ - "ps9632", - "ps7432" + "ps1599", + "ps7995" ] }, "Variables": { diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index b23c26cd3538..3e838234c88d 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -22,6 +22,8 @@ * 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 +* Added support for `-TemplateParameterObject` parameter while using `-TemplateSpecId` parameter in New-Az*Deployments cmdlets. +* Fixed the inaccurate error message received on trying to deploy a non existant template spec. ## Version 3.2.1 * Removed principal type on New-AzRoleAssignment and Set-AzRoleAssignment because current mapping was breaking certain scenarios diff --git a/src/Resources/Resources/help/New-AzDeployment.md b/src/Resources/Resources/help/New-AzDeployment.md index a2c94eb2949b..d45e25ca9cf5 100644 --- a/src/Resources/Resources/help/New-AzDeployment.md +++ b/src/Resources/Resources/help/New-AzDeployment.md @@ -15,120 +15,135 @@ Create a deployment ### ByTemplateFileWithNoParameters (Default) ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] - [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterObject -TemplateObject + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterObject -TemplateFile + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateUriAndParameterObject ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterObject -TemplateUri + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### ByTemplateSpecResourceIdAndParamsObject +``` +New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterObject -TemplateSpecId + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterFile -TemplateObject + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterFile ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateSpecResourceIdAndParams ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterFile -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterFile -TemplateSpecId + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateObjectAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterUri -TemplateObject + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### ByTemplateFileAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriAndParameterUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateSpecResourceIdAndParamsUri ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateParameterUri -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterUri -TemplateSpecId [-SkipTemplateParameterPrompt] + [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateObjectWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateUriWithNoParameters ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### ByTemplateSpecResourceId ``` New-AzDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] [-Tag ] - [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-QueryString ] - [-AsJob] -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] + [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -168,6 +183,7 @@ It uses the *TemplateVersion* parameter to specify the version of the template. ``` PS C:\> New-AzDeployment -Location "West US" -TemplateUri "https://example.com/example.json" -QueryString "foo" ``` + This command creates a new deployment using the template in TemplateUri which is not public and requires a token parameter to access which would be provided using the QueryString parameter. Running this command effectively accesses the template using the url https://example.com/example.json?foo. This can be used if you want to use a template in a storage account by providing the SAS token as the QueryString @@ -371,7 +387,7 @@ A hash table which represents the parameters. ```yaml Type: System.Collections.Hashtable -Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject +Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject, ByTemplateSpecResourceIdAndParamsObject Aliases: Required: True @@ -401,7 +417,7 @@ Resource ID of the templateSpec to be deployed. ```yaml Type: System.String -Parameter Sets: ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId +Parameter Sets: ByTemplateSpecResourceIdAndParamsObject, ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId Aliases: Required: True diff --git a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md index 8922f8e121e8..3c5528742c83 100644 --- a/src/Resources/Resources/help/New-AzManagementGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzManagementGroupDeployment.md @@ -16,7 +16,7 @@ Create a deployment at a management group ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateFile + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -25,7 +25,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterObject + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterObject -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -34,7 +34,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterObject + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterObject -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -43,16 +43,25 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterObject + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterObject -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### ByTemplateSpecResourceIdAndParamsObject +``` +New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location + [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterObject + -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + ### ByTemplateObjectAndParameterFile ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterFile + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterFile -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -61,7 +70,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterFile + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterFile -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -70,7 +79,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterFile + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterFile -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -79,7 +88,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterFile + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterFile -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -88,7 +97,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterUri + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterUri -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -97,7 +106,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterUri + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterUri -TemplateFile [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -106,7 +115,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterUri + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterUri -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -115,7 +124,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateParameterUri + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateParameterUri -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -124,7 +133,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateObject + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateObject [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -133,7 +142,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateUri + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateUri [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -142,7 +151,7 @@ New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Lo ``` New-AzManagementGroupDeployment [-Name ] -ManagementGroupId -Location [-DeploymentDebugLogLevel ] [-Tag ] [-WhatIfResultFormat ] - [-WhatIfExcludeChangeType ] [-QueryString ] [-AsJob] -TemplateSpecId + [-WhatIfExcludeChangeType ] [-AsJob] [-QueryString ] -TemplateSpecId [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -179,6 +188,7 @@ The command uses the *TemplateFile* parameter to specify the template and the *T ``` PS C:\> New-AzManagementGroupDeployment -ManagementGroupId "myMG" -Location "West US" -TemplateUri "https://example.com/example.json" -QueryString "foo" ``` + This command creates a new deployment using the template in TemplateUri which is not public and requires a token parameter to access which would be provided using the QueryString parameter. Running this command effectively accesses the template using the url https://example.com/example.json?foo. This can be used if you want to use a template in a storage account by providing the SAS token as the QueryString @@ -398,7 +408,7 @@ A hash table which represents the parameters. ```yaml Type: System.Collections.Hashtable -Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject +Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject, ByTemplateSpecResourceIdAndParamsObject Aliases: Required: True @@ -428,7 +438,7 @@ Resource ID of the templateSpec to be deployed. ```yaml Type: System.String -Parameter Sets: ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId +Parameter Sets: ByTemplateSpecResourceIdAndParamsObject, ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId Aliases: Required: True diff --git a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md index b766917e1af2..8489ee46be1d 100644 --- a/src/Resources/Resources/help/New-AzResourceGroupDeployment.md +++ b/src/Resources/Resources/help/New-AzResourceGroupDeployment.md @@ -52,6 +52,16 @@ New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mod [] ``` +### ByTemplateSpecResourceIdAndParamsObject +``` +New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] + [-DeploymentDebugLogLevel ] [-RollbackToLastDeployment] [-RollBackDeploymentName ] + [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-Force] + [-AsJob] [-QueryString ] -TemplateParameterObject -TemplateSpecId + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### ByTemplateObjectAndParameterFile ``` New-AzResourceGroupDeployment [-Name ] -ResourceGroupName [-Mode ] @@ -213,9 +223,11 @@ New-AzResourceGroupDeployment -DeploymentDebugLogLevel RequestContent -Name myne ```powershell PS C:\> New-AzResourceGroupDeployment -ResourceGroupName "RGName" -TemplateUri "https://example.com/example.json" -QueryString "foo" ``` + This command creates a new deployment using the template in TemplateUri which is not public and requires a token parameter to access which would be provided using the QueryString parameter. Running this command effectively accesses the template using the url https://example.com/example.json?foo. This can be used if you want to use a template in a storage account by providing the SAS token as the QueryString + ## PARAMETERS ### -AsJob @@ -481,7 +493,7 @@ Template parameters are dynamically added to the command when you specify a temp ```yaml Type: System.Collections.Hashtable -Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject +Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject, ByTemplateSpecResourceIdAndParamsObject Aliases: Required: True @@ -511,7 +523,7 @@ Resource ID of the templateSpec to be deployed. ```yaml Type: System.String -Parameter Sets: ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId +Parameter Sets: ByTemplateSpecResourceIdAndParamsObject, ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId Aliases: Required: True diff --git a/src/Resources/Resources/help/New-AzTenantDeployment.md b/src/Resources/Resources/help/New-AzTenantDeployment.md index 402eff9fda85..5a11f40854e6 100644 --- a/src/Resources/Resources/help/New-AzTenantDeployment.md +++ b/src/Resources/Resources/help/New-AzTenantDeployment.md @@ -47,6 +47,15 @@ New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogL [] ``` +### ByTemplateSpecResourceIdAndParamsObject +``` +New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] + [-Tag ] [-WhatIfResultFormat ] [-WhatIfExcludeChangeType ] [-AsJob] + [-QueryString ] -TemplateParameterObject -TemplateSpecId + [-SkipTemplateParameterPrompt] [-Pre] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ### ByTemplateObjectAndParameterFile ``` New-AzTenantDeployment [-Name ] -Location [-DeploymentDebugLogLevel ] @@ -366,7 +375,7 @@ A hash table which represents the parameters. ```yaml Type: System.Collections.Hashtable -Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject +Parameter Sets: ByTemplateObjectAndParameterObject, ByTemplateFileAndParameterObject, ByTemplateUriAndParameterObject, ByTemplateSpecResourceIdAndParamsObject Aliases: Required: True @@ -396,7 +405,7 @@ Resource ID of the templateSpec to be deployed. ```yaml Type: System.String -Parameter Sets: ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId +Parameter Sets: ByTemplateSpecResourceIdAndParamsObject, ByTemplateSpecResourceIdAndParams, ByTemplateSpecResourceIdAndParamsUri, ByTemplateSpecResourceId Aliases: Required: True