diff --git a/NuGet.Config b/NuGet.Config index a00aa3c94184..589a211281ec 100644 --- a/NuGet.Config +++ b/NuGet.Config @@ -4,7 +4,7 @@ - + diff --git a/README.md b/README.md index 494e242cb54b..418470322dea 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,7 @@ This repository contains PowerShell cmdlets for developers and administrators to develop, deploy, and manage Microsoft Azure applications. -Try it out in Azure Cloud Shell! -* Direct link: Open a browser to https://shell.azure.com -* Azure portal: Select the Cloud Shell icon on the [Azure portal](https://portal.azure.com/): - -[![CloudShellLaunchIcon](https://docs.microsoft.com/en-us/azure/cloud-shell/media/overview/portal-launch-icon.png)](#) +Try it out in [Azure Cloud Shell](https://portal.azure.com/#cloudshell)! ## Modules Below is a table containing our Azure PowerShell rollup module. diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/DeploymentCreateCmdlet.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/DeploymentCreateCmdlet.cs index 9da3e7ee1e1a..af84a547e58b 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/DeploymentCreateCmdlet.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/DeploymentCreateCmdlet.cs @@ -118,7 +118,10 @@ public override object GetDynamicParameters() { if (!string.IsNullOrEmpty(QueryString)) { - protectedTemplateUri = TemplateUri + "?" + QueryString; + if(QueryString.Substring(0,1) == "?") + protectedTemplateUri = TemplateUri + QueryString; + else + protectedTemplateUri = TemplateUri + "?" + QueryString; } return base.GetDynamicParameters(); } diff --git a/src/Resources/ResourceManager/SdkModels/Deployments/PSDeploymentWhatIfCmdletParameters.cs b/src/Resources/ResourceManager/SdkModels/Deployments/PSDeploymentWhatIfCmdletParameters.cs index 6467570ec5cf..8e44ab54c802 100644 --- a/src/Resources/ResourceManager/SdkModels/Deployments/PSDeploymentWhatIfCmdletParameters.cs +++ b/src/Resources/ResourceManager/SdkModels/Deployments/PSDeploymentWhatIfCmdletParameters.cs @@ -102,6 +102,11 @@ public DeploymentWhatIf ToDeploymentWhatIf() else if (Uri.IsWellFormedUriString(this.TemplateUri, UriKind.Absolute)) { properties.TemplateLink = new TemplateLink(this.TemplateUri); + + if (!string.IsNullOrEmpty(this.QueryString)) + { + properties.TemplateLink.QueryString = this.QueryString; + } } else { diff --git a/src/Resources/Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs b/src/Resources/Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs index 4be4a82ba0c0..c9746bfcbb1c 100644 --- a/src/Resources/Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs +++ b/src/Resources/Resources.Test/ResourceGroupDeployments/NewAzureResourceGroupDeploymentCommandTests.cs @@ -57,10 +57,14 @@ public class NewAzureResourceGroupDeploymentCommandTests : RMTestBase private string lastDeploymentName = "oldfooDeployment"; + private string queryString = "foo"; + private Dictionary deploymentTags = Enumerable.Range(0, 2).ToDictionary(i => $"tagname{i}", i => $"tagvalue{i}"); private string templateFile = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, @"Resources\sampleTemplateFile.json"); + private string templateUri = "http://mytemplate.com"; + public NewAzureResourceGroupDeploymentCommandTests(ITestOutputHelper output) { resourcesClientMock = new Mock(); @@ -356,5 +360,71 @@ public void ResolvesDynamicParametersWithCrossSubTemplateSpec() dynamicParams.Count().Should().Be(template.Parameters.Count); dynamicParams.Keys.Should().Contain(template.Parameters.Keys); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void CreatesNewDeploymentUsingQueryStringParam() + { + PSDeploymentCmdletParameters expectedParameters = new PSDeploymentCmdletParameters() + { + TemplateFile = templateUri, + DeploymentName = deploymentName, + QueryString = queryString, + Tags = new Dictionary(this.deploymentTags) + }; + PSDeploymentCmdletParameters actualParameters = new PSDeploymentCmdletParameters(); + PSResourceGroupDeployment expected = new PSResourceGroupDeployment() + { + Mode = DeploymentMode.Incremental, + DeploymentName = deploymentName, + CorrelationId = "123", + Outputs = new Dictionary() + { + { "Variable1", new DeploymentVariable() { Value = "true", Type = "bool" } }, + { "Variable2", new DeploymentVariable() { Value = "10", Type = "int" } }, + { "Variable3", new DeploymentVariable() { Value = "hello world", Type = "string" } } + }, + Parameters = new Dictionary() + { + { "Parameter1", new DeploymentVariable() { Value = "true", Type = "bool" } }, + { "Parameter2", new DeploymentVariable() { Value = "10", Type = "int" } }, + { "Parameter3", new DeploymentVariable() { Value = "hello world", Type = "string" } } + }, + ProvisioningState = ProvisioningState.Succeeded.ToString(), + ResourceGroupName = resourceGroupName, + TemplateLink = new TemplateLink() + { + ContentVersion = "1.0", + Uri = "http://mytemplate.com", + QueryString = "foo" + }, + Timestamp = new DateTime(2014, 2, 13) + }; + resourcesClientMock.Setup(f => f.ExecuteResourceGroupDeployment( + It.IsAny())) + .Returns(expected) + .Callback((PSDeploymentCmdletParameters p) => { actualParameters = p; }); + + cmdlet.ResourceGroupName = resourceGroupName; + cmdlet.Name = expectedParameters.DeploymentName; + cmdlet.TemplateUri = expectedParameters.TemplateFile; + cmdlet.QueryString = expectedParameters.QueryString; + cmdlet.Tag = new Hashtable(this.deploymentTags); + + cmdlet.ExecuteCmdlet(); + + actualParameters.DeploymentName.Should().Equals(expectedParameters.DeploymentName); + actualParameters.TemplateFile.Should().Equals(expectedParameters.TemplateFile); + actualParameters.QueryString.Should().Equals(expectedParameters.QueryString); + actualParameters.TemplateParameterObject.Should().NotBeNull(); + actualParameters.OnErrorDeployment.Should().BeNull(); + actualParameters.Tags.Should().NotBeNull(); + + var differenceTags = actualParameters.Tags + .Where(entry => expectedParameters.Tags[entry.Key] != entry.Value); + differenceTags.Should().BeEmpty(); + + commandRuntimeMock.Verify(f => f.WriteObject(expected), Times.Once()); + } } } diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 0c0357c353f3..fe7b4180f2d0 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -181,13 +181,6 @@ public void TestNewDeploymentFromNonexistentTemplateParameterFile() TestRunner.RunTestScript("Test-NewDeploymentFromNonexistentTemplateParameterFile"); } - [Fact] - [Trait(Category.AcceptanceType, Category.CheckIn)] - public void TestNewDeploymentWithQueryString() - { - TestRunner.RunTestScript("Test-NewDeploymentWithQueryString"); - } - [Fact] [Trait(Category.AcceptanceType, Category.LiveOnly)] public void TestNewDeploymentFromBicepFile() @@ -201,5 +194,13 @@ public void TestTestDeploymentFromBicepFile() { TestRunner.RunTestScript("Test-TestDeploymentFromBicepFile"); } + + //Please make sure to re-record this test if any changes are made to WhatIf, QueryString or ResourceGroupDeployments + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestWhatIfWithQueryString() + { + TestRunner.RunTestScript("Test-WhatIfWithQueryString"); + } } } diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 0b0d64456f9e..9fb2e30d958d 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -788,38 +788,6 @@ function Test-NewDeploymentFromNonexistentTemplateParameterFile } } -<# -.SYNOPSIS -Tests deployment from a template in a storage account using a query string. -#> -function Test-NewDeploymentWithQueryString -{ - # Setup - $rgname = Get-ResourceGroupName - $rname = Get-ResourceName - $rglocation = "West US 2" - $subId = (Get-AzContext).Subscription.SubscriptionId - - try - { - # Prepare our RG and basic template spec: - - New-AzResourceGroup -Name $rgname -Location $rglocation - - #Create deployment - $deployment =New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateUri "https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json" -QueryString "foo" - - # Assert - Assert-AreEqual Succeeded $deployment.ProvisioningState - } - - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - <# .SYNOPSIS Tests deployment via Bicep file. @@ -884,4 +852,75 @@ function Test-TestDeploymentFromBicepFile # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +is running live in target environment +#> +function IsLive +{ + return [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode -ne [Microsoft.Azure.Test.HttpRecorder.HttpRecorderMode]::Playback +} + +<# +.SYNOPSIS +Tests what-if on a deployment from a template in a storage account using a query string. +Please make sure to re-record this test if any changes are made to WhatIf or ResourceGroupDeployments +#> +function Test-WhatIfWithQueryString +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $saname = "querystringpstests" + $rglocation = "West US 2" + $subId = (Get-AzContext).Subscription.SubscriptionId + + if(IsLive) + { + try + { + # Prepare our RG + New-AzResourceGroup -Name $rgname -Location $rglocation + + #Prepare our Storage Account + $account = New-AzStorageAccount -ResourceGroupName $rgname -AccountName $saname -Location $rglocation -SkuName "Standard_LRS" + + #Get StorageAccountKey + $key = (Get-AzStorageAccountKey -ResourceGroupName $rgname -AccountName $saname)| Where-Object {$_.KeyName -eq "key1"} + + #Get StorageAccount context + $context = New-AzStorageContext -StorageAccountName $saname -StorageAccountKey $key.Value + + #Create FileShare + New-AzStorageShare -Name "querystringshare" -Context $context + + #Upload files to the StorageAccount + Set-AzStorageFileContent -ShareName "querystringshare" -Source "sampleLinkedTemplateParent.json" -Path "sampleLinkedTemplateParent.json" -Context $context + Set-AzStorageFileContent -ShareName "querystringshare" -Source "sampleLinkedTemplateChild.json" -Path "sampleLinkedTemplateChild.json" -Context $context + + #Get SAStoken + $token = New-AzStorageAccountSASToken -Service File -ResourceType Service,Container,Object -Permission "r" -Context $context -ExpiryTime (Get-Date).AddMinutes(3) + + #Create deployment + $deployment =New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateUri "https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json" -QueryString $token.Substring(1) + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + + #Run What-if + $result = New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateUri "https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json" -QueryString $token.Substring(1) -WhatIf + + #assert that nothing has changed. + Assert-AreEqual 0 ($result).Count + } + + finally + { + # Cleanup + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $saname; + Clean-ResourceGroup $rgname + } + } } \ No newline at end of file diff --git a/src/Resources/Resources.Test/ScenarioTests/ResourceTestRunner.cs b/src/Resources/Resources.Test/ScenarioTests/ResourceTestRunner.cs index f37d4bc44a1a..ad78b48902e2 100644 --- a/src/Resources/Resources.Test/ScenarioTests/ResourceTestRunner.cs +++ b/src/Resources/Resources.Test/ScenarioTests/ResourceTestRunner.cs @@ -43,7 +43,8 @@ protected ResourceTestRunner(ITestOutputHelper output) .WithExtraRmModules(helper => new[] { helper.RMResourceModule, - helper.GetRMModulePath("AzureRM.Monitor.psd1") + helper.GetRMModulePath("AzureRM.Monitor.psd1"), + helper.GetRMModulePath("AzureRM.Storage.psd1") }) .WithRecordMatcher( (ignoreResourcesClient, resourceProviders, userAgentsToIgnore) => diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentWithQueryString.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentWithQueryString.json deleted file mode 100644 index 6b009ab3824d..000000000000 --- a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentWithQueryString.json +++ /dev/null @@ -1,1633 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8a945148-b96b-41fa-991b-d518c2904572" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "79240be5-87ef-4d15-a0aa-38a48fd0d855" - ], - "x-ms-correlation-request-id": [ - "79240be5-87ef-4d15-a0aa-38a48fd0d855" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211012Z:79240be5-87ef-4d15-a0aa-38a48fd0d855" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:12 GMT" - ], - "Content-Length": [ - "98" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cd4a73d4-e316-4adb-928f-41753ef9da5b" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "90b20457-df6a-43f9-a746-68e6624e8dd1" - ], - "x-ms-correlation-request-id": [ - "90b20457-df6a-43f9-a746-68e6624e8dd1" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211018Z:90b20457-df6a-43f9-a746-68e6624e8dd1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:18 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1f9d7780-fa50-45b9-afe4-24a7faf4eae6" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "31" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "79833bfc-606a-4d25-b745-5d73b150a470" - ], - "x-ms-correlation-request-id": [ - "79833bfc-606a-4d25-b745-5d73b150a470" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211013Z:79833bfc-606a-4d25-b745-5d73b150a470" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:13 GMT" - ], - "Content-Length": [ - "210" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478\",\r\n \"name\": \"ps4478\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/validate?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDMvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"queryString\": \"foo\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "690eb892-f155-4a7b-98a4-8a47069e3525" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.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": [ - "240" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "16b9f831-72f4-4cd8-a180-3d22e2c4e560" - ], - "x-ms-correlation-request-id": [ - "16b9f831-72f4-4cd8-a180-3d22e2c4e560" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211014Z:16b9f831-72f4-4cd8-a180-3d22e2c4e560" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:14 GMT" - ], - "Content-Length": [ - "863" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:14.3585647Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"16b9f831-72f4-4cd8-a180-3d22e2c4e560\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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 \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate\"\r\n }\r\n ]\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"queryString\": \"foo\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6f378fd-a965-4262-856b-366d24ee7a0d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.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": [ - "240" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/operationStatuses/08585932810704680772?api-version=2020-10-01" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ddb1d920-0f50-45cb-8e9a-855306f791f0" - ], - "x-ms-correlation-request-id": [ - "ddb1d920-0f50-45cb-8e9a-855306f791f0" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211015Z:ddb1d920-0f50-45cb-8e9a-855306f791f0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:15 GMT" - ], - "Content-Length": [ - "707" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2020-12-18T21:10:15.3302575Z\",\r\n \"duration\": \"PT0.3207265S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/ps7143/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9wczcxNDMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b6521590-1a12-427f-99c0-cde96d31b822" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "d2501fda-efea-4f69-9118-121912b334ed" - ], - "x-ms-correlation-request-id": [ - "d2501fda-efea-4f69-9118-121912b334ed" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211015Z:d2501fda-efea-4f69-9118-121912b334ed" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:15 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/ps4478/deployments/ps7143/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9wczcxNDMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a93314a2-43a1-4670-bbb7-183c22c5fd4f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "3d92ea4b-0ada-43cc-9912-8bf97a4c9bf7" - ], - "x-ms-correlation-request-id": [ - "3d92ea4b-0ada-43cc-9912-8bf97a4c9bf7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211016Z:3d92ea4b-0ada-43cc-9912-8bf97a4c9bf7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:15 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/ps4478/deployments/ps7143/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9wczcxNDMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f8f7b64b-8105-4740-9433-560894cf2223" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "bfc0a79c-12a6-4f34-baf2-210d7a9aca55" - ], - "x-ms-correlation-request-id": [ - "bfc0a79c-12a6-4f34-baf2-210d7a9aca55" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211016Z:bfc0a79c-12a6-4f34-baf2-210d7a9aca55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "722" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/operations/87E4ECCCAC4DCCA4\",\r\n \"operationId\": \"87E4ECCCAC4DCCA4\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4499407Z\",\r\n \"duration\": \"PT0.7471872S\",\r\n \"trackingId\": \"de575931-93ce-4b67-99b8-8788a82cb300\",\r\n \"serviceRequestId\": \"e4a7044b-bc0b-413f-92d5-ccc94f039486\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/ps7143/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9wczcxNDMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9f405a8b-5fdd-4c7e-be7d-0e004f23c19d" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "89877095-71d5-4528-b4e9-da9f7a3d55a7" - ], - "x-ms-correlation-request-id": [ - "89877095-71d5-4528-b4e9-da9f7a3d55a7" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:89877095-71d5-4528-b4e9-da9f7a3d55a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "722" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/operations/87E4ECCCAC4DCCA4\",\r\n \"operationId\": \"87E4ECCCAC4DCCA4\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4499407Z\",\r\n \"duration\": \"PT0.7471872S\",\r\n \"trackingId\": \"de575931-93ce-4b67-99b8-8788a82cb300\",\r\n \"serviceRequestId\": \"e4a7044b-bc0b-413f-92d5-ccc94f039486\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/ps7143/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9wczcxNDMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "40170e45-db02-41a5-ae0b-437286357e15" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-request-id": [ - "545df528-c8cf-4265-b3dd-e55d611e043b" - ], - "x-ms-correlation-request-id": [ - "545df528-c8cf-4265-b3dd-e55d611e043b" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:545df528-c8cf-4265-b3dd-e55d611e043b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "1157" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/operations/87E4ECCCAC4DCCA4\",\r\n \"operationId\": \"87E4ECCCAC4DCCA4\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:17.6936919Z\",\r\n \"duration\": \"PT1.9909384S\",\r\n \"trackingId\": \"f3b25345-a2bc-4b8e-a9bc-ec8b999e20da\",\r\n \"serviceRequestId\": \"e4a7044b-bc0b-413f-92d5-ccc94f039486\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143/operations/08585932810704680772\",\r\n \"operationId\": \"08585932810704680772\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:17.7524747Z\",\r\n \"duration\": \"PT2.0497212S\",\r\n \"trackingId\": \"74fcafd6-526b-44e0-8500-8b632836519c\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7d462e88-f05a-41e2-9fed-e93773716d52" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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": [ - "f6392793-e4c7-4676-89e3-928a659e0be6" - ], - "x-ms-correlation-request-id": [ - "f6392793-e4c7-4676-89e3-928a659e0be6" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211015Z:f6392793-e4c7-4676-89e3-928a659e0be6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:15 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:15.6095284Z\",\r\n \"duration\": \"PT0.5999974S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "43bb7a2c-a702-44f5-89fe-e2da9b600ae4" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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": [ - "f0e299d1-3ebf-435b-9be8-03f4f2c6dfee" - ], - "x-ms-correlation-request-id": [ - "f0e299d1-3ebf-435b-9be8-03f4f2c6dfee" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211016Z:f0e299d1-3ebf-435b-9be8-03f4f2c6dfee" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:15.6095284Z\",\r\n \"duration\": \"PT0.5999974S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "e037c935-1b8c-4ee4-b4e4-f5e5a410ec4a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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": [ - "1936e46e-a46a-426e-a0b1-5f36a6aeae74" - ], - "x-ms-correlation-request-id": [ - "1936e46e-a46a-426e-a0b1-5f36a6aeae74" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:1936e46e-a46a-426e-a0b1-5f36a6aeae74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4266341Z\",\r\n \"duration\": \"PT1.4171031S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "fcf86795-e8e3-4d9d-9bff-d17d448ff6cc" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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": [ - "bc0623ba-4df8-4625-8a88-74c8b7f00aa9" - ], - "x-ms-correlation-request-id": [ - "bc0623ba-4df8-4625-8a88-74c8b7f00aa9" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:bc0623ba-4df8-4625-8a88-74c8b7f00aa9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "706" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4266341Z\",\r\n \"duration\": \"PT1.4171031S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/ps7143?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczcxNDM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a5f3f3dd-0d29-45e7-9cf6-71f1831f7a22" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-request-id": [ - "5b60624e-1a63-4025-b6df-d470e14a25e3" - ], - "x-ms-correlation-request-id": [ - "5b60624e-1a63-4025-b6df-d470e14a25e3" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211018Z:5b60624e-1a63-4025-b6df-d470e14a25e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "742" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/ps7143\",\r\n \"name\": \"ps7143\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringtesting.blob.core.windows.net/testqsblob/linkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"12440681897186865293\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:17.7704629Z\",\r\n \"duration\": \"PT2.7609319S\",\r\n \"correlationId\": \"ddb1d920-0f50-45cb-8e9a-855306f791f0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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 \"outputs\": {},\r\n \"outputResources\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9fe85163-f28d-4765-9c73-ec386904b312" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "c82d59ef-06db-4691-a571-801cebf5c913" - ], - "x-ms-correlation-request-id": [ - "c82d59ef-06db-4691-a571-801cebf5c913" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211016Z:c82d59ef-06db-4691-a571-801cebf5c913" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:16 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "cda1a529-eade-4e84-a570-623f365abaff" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "dcb2a606-8ada-4678-96a9-7863e63aee55" - ], - "x-ms-correlation-request-id": [ - "dcb2a606-8ada-4678-96a9-7863e63aee55" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:dcb2a606-8ada-4678-96a9-7863e63aee55" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "HEAD", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6c0f7545-65bb-464e-b47b-4308f72be631" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.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": [ - "6f683b42-6155-45ee-9433-a5dfbb63a66a" - ], - "x-ms-correlation-request-id": [ - "6f683b42-6155-45ee-9433-a5dfbb63a66a" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211018Z:6f683b42-6155-45ee-9433-a5dfbb63a66a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/linkedTemplate/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "31a97541-99b0-4f19-92db-c19afc7a744e" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "bd70ca27-9044-4bf8-b1ec-caf7203aa9ef" - ], - "x-ms-correlation-request-id": [ - "bd70ca27-9044-4bf8-b1ec-caf7203aa9ef" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211016Z:bd70ca27-9044-4bf8-b1ec-caf7203aa9ef" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:16 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "457" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585932810691904400\",\r\n \"operationId\": \"08585932810691904400\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4318414Z\",\r\n \"duration\": \"PT0.0430205S\",\r\n \"trackingId\": \"5a7df283-db14-458a-a504-e4bf44102a48\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/linkedTemplate/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f902d085-8061-4f7a-babf-33b690af5392" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "163e6c3e-0ea4-47fb-b831-12c7963db1a4" - ], - "x-ms-correlation-request-id": [ - "163e6c3e-0ea4-47fb-b831-12c7963db1a4" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211017Z:163e6c3e-0ea4-47fb-b831-12c7963db1a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:17 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "457" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585932810691904400\",\r\n \"operationId\": \"08585932810691904400\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4318414Z\",\r\n \"duration\": \"PT0.0430205S\",\r\n \"trackingId\": \"5a7df283-db14-458a-a504-e4bf44102a48\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478/deployments/linkedTemplate/operations?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OC9kZXBsb3ltZW50cy9saW5rZWRUZW1wbGF0ZS9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "46281507-cd68-4d04-ba07-461587cfd883" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.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": [ - "dff9c3dd-6f78-4724-9766-17e87ceff137" - ], - "x-ms-correlation-request-id": [ - "dff9c3dd-6f78-4724-9766-17e87ceff137" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211018Z:dff9c3dd-6f78-4724-9766-17e87ceff137" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:18 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "457" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4478/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585932810691904400\",\r\n \"operationId\": \"08585932810691904400\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2020-12-18T21:10:16.4318414Z\",\r\n \"duration\": \"PT0.0430205S\",\r\n \"trackingId\": \"5a7df283-db14-458a-a504-e4bf44102a48\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4478?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDQ3OD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "b9dc2637-d00d-4944-a7ab-b640f74ad3ed" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "64cc313d-a405-40b4-bb48-576aef6769a3" - ], - "x-ms-correlation-request-id": [ - "64cc313d-a405-40b4-bb48-576aef6769a3" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211019Z:64cc313d-a405-40b4-bb48-576aef6769a3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:19 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME56Z3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "208b8952-5d43-48e7-85cb-7fbeb065175e" - ], - "x-ms-correlation-request-id": [ - "208b8952-5d43-48e7-85cb-7fbeb065175e" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211034Z:208b8952-5d43-48e7-85cb-7fbeb065175e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:34 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME56Z3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" - ], - "Retry-After": [ - "0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "a22d0c5c-4c84-48f8-b63e-0166ddade001" - ], - "x-ms-correlation-request-id": [ - "a22d0c5c-4c84-48f8-b63e-0166ddade001" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211050Z:a22d0c5c-4c84-48f8-b63e-0166ddade001" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:10:49 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME56Z3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "22c9fba7-6fb2-4572-80aa-90e70fb49e74" - ], - "x-ms-correlation-request-id": [ - "22c9fba7-6fb2-4572-80aa-90e70fb49e74" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211105Z:22c9fba7-6fb2-4572-80aa-90e70fb49e74" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:11:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQ0NzgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRME56Z3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29321.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19042.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "e5937c17-a0ff-4e35-a792-9c51ec630a8a" - ], - "x-ms-correlation-request-id": [ - "e5937c17-a0ff-4e35-a792-9c51ec630a8a" - ], - "x-ms-routing-request-id": [ - "WESTCENTRALUS:20201218T211105Z:e5937c17-a0ff-4e35-a792-9c51ec630a8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Fri, 18 Dec 2020 21:11:04 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ], - "Retry-After": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - } - ], - "Names": { - "Test-NewDeploymentWithQueryString": [ - "ps4478", - "ps7143" - ] - }, - "Variables": { - "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" - } -} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestWhatIfWithQueryString.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestWhatIfWithQueryString.json new file mode 100644 index 000000000000..ab968b92f2bb --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestWhatIfWithQueryString.json @@ -0,0 +1,2374 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eefc2901-1c15-4971-b81e-fadbe91badac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "4a442c25-fc57-4815-bfaa-9315ef9151e5" + ], + "x-ms-correlation-request-id": [ + "4a442c25-fc57-4815-bfaa-9315ef9151e5" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234628Z:4a442c25-fc57-4815-bfaa-9315ef9151e5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:27 GMT" + ], + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "0decf9b4-9eb2-46b0-860d-ae65a303a946" + ], + "x-ms-correlation-request-id": [ + "0decf9b4-9eb2-46b0-860d-ae65a303a946" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234723Z:0decf9b4-9eb2-46b0-860d-ae65a303a946" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:23 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "eefc2901-1c15-4971-b81e-fadbe91badac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "662cee29-7c42-4d5a-b77f-b9bd111f86c8" + ], + "x-ms-correlation-request-id": [ + "662cee29-7c42-4d5a-b77f-b9bd111f86c8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234628Z:662cee29-7c42-4d5a-b77f-b9bd111f86c8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:28 GMT" + ], + "Content-Length": [ + "279" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696\",\r\n \"name\": \"ps696\",\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/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"querystringpstests\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "84" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "aa13b375-cb34-41d6-b461-77dd7b46de7d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ed26db88-e259-44a7-bdda-09c44b7b36aa" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234629Z:ed26db88-e259-44a7-bdda-09c44b7b36aa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:29 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcXVlcnlzdHJpbmdwc3Rlc3RzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "0dad7981-a2c0-4468-bc22-368c460f619c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "9cf93e35-294a-4509-a839-77d93bbaf1f4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234631Z:9cf93e35-294a-4509-a839-77d93bbaf1f4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:30 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzMi9hc3luY29wZXJhdGlvbnMvMGRhZDc5ODEtYTJjMC00NDY4LWJjMjItMzY4YzQ2MGY2MTljP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "d1582a7b-8274-4220-a990-aecfabbe72e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a3036b50-c495-4c4b-8dc2-0bd944b79b5f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234648Z:a3036b50-c495-4c4b-8dc2-0bd944b79b5f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzMi9hc3luY29wZXJhdGlvbnMvMGRhZDc5ODEtYTJjMC00NDY4LWJjMjItMzY4YzQ2MGY2MTljP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-request-id": [ + "6872b3ff-37bc-4141-801c-be5e9e30aa22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "52785833-4b98-439c-9f66-e957fd8d158d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234651Z:52785833-4b98-439c-9f66-e957fd8d158d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:51 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/providers/Microsoft.Storage/locations/westus2/asyncoperations/0dad7981-a2c0-4468-bc22-368c460f619c?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzMi9hc3luY29wZXJhdGlvbnMvMGRhZDc5ODEtYTJjMC00NDY4LWJjMjItMzY4YzQ2MGY2MTljP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8dfb5176-95f1-4ecd-99f0-81d2faf0a812" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7a3e6bf4-f0c9-4b7e-b51d-abf9f02da12b" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234654Z:7a3e6bf4-f0c9-4b7e-b51d-abf9f02da12b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:54 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"name\": \"querystringpstests\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-11T23:46:30.7352799Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-11T23:46:30.7352799Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-11T23:46:30.6413168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://querystringpstests.dfs.core.windows.net/\",\r\n \"web\": \"https://querystringpstests.z5.web.core.windows.net/\",\r\n \"blob\": \"https://querystringpstests.blob.core.windows.net/\",\r\n \"queue\": \"https://querystringpstests.queue.core.windows.net/\",\r\n \"table\": \"https://querystringpstests.table.core.windows.net/\",\r\n \"file\": \"https://querystringpstests.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcXVlcnlzdHJpbmdwc3Rlc3RzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86ca4a73-d898-45f6-bcee-c57c35e3a9be" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "1a759a0b-99db-4e6d-a9b4-9e4f0af8665e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "47d08928-7692-4b05-9ec9-95ec7f23ac9a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234655Z:47d08928-7692-4b05-9ec9-95ec7f23ac9a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:54 GMT" + ], + "Content-Length": [ + "1274" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"name\": \"querystringpstests\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus2\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-11T23:46:30.7352799Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-03-11T23:46:30.7352799Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-03-11T23:46:30.6413168Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://querystringpstests.dfs.core.windows.net/\",\r\n \"web\": \"https://querystringpstests.z5.web.core.windows.net/\",\r\n \"blob\": \"https://querystringpstests.blob.core.windows.net/\",\r\n \"queue\": \"https://querystringpstests.queue.core.windows.net/\",\r\n \"table\": \"https://querystringpstests.table.core.windows.net/\",\r\n \"file\": \"https://querystringpstests.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus2\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests/listKeys?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcXVlcnlzdHJpbmdwc3Rlc3RzL2xpc3RLZXlzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "POST", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4e503cf2-7c59-4e91-b7c8-58ff66319816" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2778d2da-0aea-40b7-a847-57b5a8cf6898" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "cd2f4ef6-521a-4716-8424-67c519a4d660" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234655Z:cd2f4ef6-521a-4716-8424-67c519a4d660" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:54 GMT" + ], + "Content-Length": [ + "288" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"keys\": [\r\n {\r\n \"keyName\": \"key1\",\r\n \"value\": \"Xp3vMFKtnULHnbusrf46F5pkYNZm0dbEKnzXIua3NOSYG+Kt1EOY2ZWm/3ps3y0v/GIUPP8SqVZmwalbaeMdag==\",\r\n \"permissions\": \"FULL\"\r\n },\r\n {\r\n \"keyName\": \"key2\",\r\n \"value\": \"58nR0fETcK8Ew3HnwhUyqc06skdOgWbZinUXXlbKsRWahRtzFr0CunAEYhFP7RJrCFsaj+4FH6VZHDV1KBtYoA==\",\r\n \"permissions\": \"FULL\"\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2My92YWxpZGF0ZT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"queryString\": \"sv=2019-07-07&sig=JEq8VBGR2yYD%2FWOjLl71Bhfyrcm1cT%2FADpdPUe865QY%3D&se=2021-03-11T23%3A49%3A58Z&srt=sco&ss=f&sp=r\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "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": [ + "363" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4b47a82c-22d2-45d7-8621-9cfebffdca20" + ], + "x-ms-correlation-request-id": [ + "4b47a82c-22d2-45d7-8621-9cfebffdca20" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234659Z:4b47a82c-22d2-45d7-8621-9cfebffdca20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:58 GMT" + ], + "Content-Length": [ + "872" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:46:59.4290554Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"4b47a82c-22d2-45d7-8621-9cfebffdca20\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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 \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"queryString\": \"sv=2019-07-07&sig=JEq8VBGR2yYD%2FWOjLl71Bhfyrcm1cT%2FADpdPUe865QY%3D&se=2021-03-11T23%3A49%3A58Z&srt=sco&ss=f&sp=r\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "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": [ + "363" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163/operationStatuses/08585861004654479290?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "c7fdb430-37f0-4e5f-8508-c763f30d0ff8" + ], + "x-ms-correlation-request-id": [ + "c7fdb430-37f0-4e5f-8508-c763f30d0ff8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234700Z:c7fdb430-37f0-4e5f-8508-c763f30d0ff8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:46:59 GMT" + ], + "Content-Length": [ + "717" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-03-11T23:47:00.3307964Z\",\r\n \"duration\": \"PT0.3011132S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/ps4163/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL3BzNDE2My9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "06593274-f380-49e0-8937-bda1f3785eac" + ], + "x-ms-correlation-request-id": [ + "06593274-f380-49e0-8937-bda1f3785eac" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234700Z:06593274-f380-49e0-8937-bda1f3785eac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 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/ps696/deployments/ps4163/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL3BzNDE2My9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f8ab287f-86a2-4ecc-9167-9ad53062542e" + ], + "x-ms-correlation-request-id": [ + "f8ab287f-86a2-4ecc-9167-9ad53062542e" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:f8ab287f-86a2-4ecc-9167-9ad53062542e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 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/ps696/deployments/ps4163/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL3BzNDE2My9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "d24f35a7-5685-42b9-b432-4662b607f1f3" + ], + "x-ms-correlation-request-id": [ + "d24f35a7-5685-42b9-b432-4662b607f1f3" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:d24f35a7-5685-42b9-b432-4662b607f1f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "720" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163/operations/91973E8DA4EB50CC\",\r\n \"operationId\": \"91973E8DA4EB50CC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:01.2006583Z\",\r\n \"duration\": \"PT0.4271653S\",\r\n \"trackingId\": \"35d16d75-80e2-498c-8526-01e7837c70de\",\r\n \"serviceRequestId\": \"3b9dc21d-873c-4ba1-a6a7-97ed5fdfb036\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/ps4163/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL3BzNDE2My9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "92070a06-47e9-4e27-b192-3c2ade35e116" + ], + "x-ms-correlation-request-id": [ + "92070a06-47e9-4e27-b192-3c2ade35e116" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:92070a06-47e9-4e27-b192-3c2ade35e116" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "720" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163/operations/91973E8DA4EB50CC\",\r\n \"operationId\": \"91973E8DA4EB50CC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:01.2006583Z\",\r\n \"duration\": \"PT0.4271653S\",\r\n \"trackingId\": \"35d16d75-80e2-498c-8526-01e7837c70de\",\r\n \"serviceRequestId\": \"3b9dc21d-873c-4ba1-a6a7-97ed5fdfb036\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/ps4163/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL3BzNDE2My9vcGVyYXRpb25zP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "51cdaaf5-4671-4a39-b343-5499690ca60c" + ], + "x-ms-correlation-request-id": [ + "51cdaaf5-4671-4a39-b343-5499690ca60c" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:51cdaaf5-4671-4a39-b343-5499690ca60c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "717" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163/operations/91973E8DA4EB50CC\",\r\n \"operationId\": \"91973E8DA4EB50CC\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:47:02.6680203Z\",\r\n \"duration\": \"PT1.8945273S\",\r\n \"trackingId\": \"fae142c4-79cd-4096-81c1-730521edd600\",\r\n \"serviceRequestId\": \"3b9dc21d-873c-4ba1-a6a7-97ed5fdfb036\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate\",\r\n \"resourceType\": \"Microsoft.Resources/deployments\",\r\n \"resourceName\": \"linkedTemplate\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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": [ + "738dfbfd-8668-415a-80d9-41e34c43f9fb" + ], + "x-ms-correlation-request-id": [ + "738dfbfd-8668-415a-80d9-41e34c43f9fb" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234700Z:738dfbfd-8668-415a-80d9-41e34c43f9fb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "715" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:00.7110212Z\",\r\n \"duration\": \"PT0.681338S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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": [ + "865ed515-390b-486e-9072-3c56c2f4aaaa" + ], + "x-ms-correlation-request-id": [ + "865ed515-390b-486e-9072-3c56c2f4aaaa" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:865ed515-390b-486e-9072-3c56c2f4aaaa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "716" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:01.1760869Z\",\r\n \"duration\": \"PT1.1464037S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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": [ + "c46256f5-34e8-4a86-adf1-a8e97bc24fd4" + ], + "x-ms-correlation-request-id": [ + "c46256f5-34e8-4a86-adf1-a8e97bc24fd4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:c46256f5-34e8-4a86-adf1-a8e97bc24fd4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "716" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:01.1760869Z\",\r\n \"duration\": \"PT1.1464037S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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": [ + "cb1eab89-0b34-490e-b9d9-7e4baf8714d6" + ], + "x-ms-correlation-request-id": [ + "cb1eab89-0b34-490e-b9d9-7e4baf8714d6" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:cb1eab89-0b34-490e-b9d9-7e4baf8714d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "716" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-03-11T23:47:01.1760869Z\",\r\n \"duration\": \"PT1.1464037S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2Mz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "41d3cc86-433e-4bf0-8717-8170141f2e69" + ], + "x-ms-correlation-request-id": [ + "41d3cc86-433e-4bf0-8717-8170141f2e69" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234703Z:41d3cc86-433e-4bf0-8717-8170141f2e69" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "752" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/ps4163\",\r\n \"name\": \"ps4163\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"contentVersion\": \"1.0.0.0\"\r\n },\r\n \"templateHash\": \"5774542440984803264\",\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:47:02.7542909Z\",\r\n \"duration\": \"PT2.7246077S\",\r\n \"correlationId\": \"c7fdb430-37f0-4e5f-8508-c763f30d0ff8\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\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 \"outputs\": {},\r\n \"outputResources\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "6981c397-33e5-417f-afff-deb86fc472ac" + ], + "x-ms-correlation-request-id": [ + "6981c397-33e5-417f-afff-deb86fc472ac" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:6981c397-33e5-417f-afff-deb86fc472ac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:00 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "cb99a210-a250-4901-ad91-bef15530015a" + ], + "x-ms-correlation-request-id": [ + "cb99a210-a250-4901-ad91-bef15530015a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:cb99a210-a250-4901-ad91-bef15530015a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "53f609e9-55cf-4290-a3ce-770550654a4d" + ], + "x-ms-correlation-request-id": [ + "53f609e9-55cf-4290-a3ce-770550654a4d" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:53f609e9-55cf-4290-a3ce-770550654a4d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:02 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/linkedTemplate/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "3c887ca0-5526-4788-80c8-c7ff0749a511" + ], + "x-ms-correlation-request-id": [ + "3c887ca0-5526-4788-80c8-c7ff0749a511" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234701Z:3c887ca0-5526-4788-80c8-c7ff0749a511" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "455" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585861004644383811\",\r\n \"operationId\": \"08585861004644383811\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:47:01.438874Z\",\r\n \"duration\": \"PT0.0289978S\",\r\n \"trackingId\": \"5ea5961e-5b3b-44b4-b30c-98f3145309e1\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/linkedTemplate/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "1e5b53cb-696d-4bf8-962c-4ad73c579b29" + ], + "x-ms-correlation-request-id": [ + "1e5b53cb-696d-4bf8-962c-4ad73c579b29" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:1e5b53cb-696d-4bf8-962c-4ad73c579b29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:01 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "455" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585861004644383811\",\r\n \"operationId\": \"08585861004644383811\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:47:01.438874Z\",\r\n \"duration\": \"PT0.0289978S\",\r\n \"trackingId\": \"5ea5961e-5b3b-44b4-b30c-98f3145309e1\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/deployments/linkedTemplate/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L2RlcGxveW1lbnRzL2xpbmtlZFRlbXBsYXRlL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3af05edc-752d-4c87-9545-f2fd2d8eb09f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "6b8f23f4-daf3-4a82-9c9d-77b25b00c529" + ], + "x-ms-correlation-request-id": [ + "6b8f23f4-daf3-4a82-9c9d-77b25b00c529" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234702Z:6b8f23f4-daf3-4a82-9c9d-77b25b00c529" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:02 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "455" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Resources/deployments/linkedTemplate/operations/08585861004644383811\",\r\n \"operationId\": \"08585861004644383811\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-03-11T23:47:01.438874Z\",\r\n \"duration\": \"PT0.0289978S\",\r\n \"trackingId\": \"5ea5961e-5b3b-44b4-b30c-98f3145309e1\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696/providers/Microsoft.Resources/deployments/ps4163/whatIf?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzL2RlcGxveW1lbnRzL3BzNDE2My93aGF0SWY/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"whatIfSettings\": {\r\n \"resultFormat\": \"FullResourcePayloads\"\r\n },\r\n \"templateLink\": {\r\n \"uri\": \"https://querystringpstests.file.core.windows.net/querystringshare/sampleLinkedTemplateParent.json\",\r\n \"queryString\": \"sv=2019-07-07&sig=JEq8VBGR2yYD%2FWOjLl71Bhfyrcm1cT%2FADpdPUe865QY%3D&se=2021-03-11T23%3A49%3A58Z&srt=sco&ss=f&sp=r\"\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec951aac-1441-4097-b733-4a143299b304" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "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": [ + "442" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUFM2OTYtUFM0MTYzLTkyMDUzMkJGOjJEODJBNzoyRDQ1Mjc6MkRCODFGOjJENkUwNThDMThCN0Q4Iiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "920532bf-82a7-4527-b81f-6e058c18b7d8" + ], + "x-ms-correlation-request-id": [ + "920532bf-82a7-4527-b81f-6e058c18b7d8" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234704Z:920532bf-82a7-4527-b81f-6e058c18b7d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUFM2OTYtUFM0MTYzLTkyMDUzMkJGOjJEODJBNzoyRDQ1Mjc6MkRCODFGOjJENkUwNThDMThCN0Q4Iiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SWGFHRjBTV1pLYjJJdFVGTTJPVFl0VUZNME1UWXpMVGt5TURVek1rSkdPakpFT0RKQk56b3lSRFExTWpjNk1rUkNPREZHT2pKRU5rVXdOVGhETVRoQ04wUTRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec951aac-1441-4097-b733-4a143299b304" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "1e83edcd-33ef-4e47-94be-d91fd392fd9f" + ], + "x-ms-correlation-request-id": [ + "1e83edcd-33ef-4e47-94be-d91fd392fd9f" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234719Z:1e83edcd-33ef-4e47-94be-d91fd392fd9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "904" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"correlationId\": \"920532bf-82a7-4527-b81f-6e058c18b7d8\",\r\n \"changes\": [\r\n {\r\n \"resourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"changeType\": \"Ignore\",\r\n \"before\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"name\": \"querystringpstests\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n \"after\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"name\": \"querystringpstests\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IkRlcGxveW1lbnRXaGF0SWZKb2ItUFM2OTYtUFM0MTYzLTkyMDUzMkJGOjJEODJBNzoyRDQ1Mjc6MkRCODFGOjJENkUwNThDMThCN0Q4Iiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWtSbGNHeHZlVzFsYm5SWGFHRjBTV1pLYjJJdFVGTTJPVFl0VUZNME1UWXpMVGt5TURVek1rSkdPakpFT0RKQk56b3lSRFExTWpjNk1rUkNPREZHT2pKRU5rVXdOVGhETVRoQ04wUTRJaXdpYW05aVRHOWpZWFJwYjI0aU9pSjNaWE4wZFhNeUluMD9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ec951aac-1441-4097-b733-4a143299b304" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "03b21312-c7f9-4cb5-a0a9-c1668d870cb9" + ], + "x-ms-correlation-request-id": [ + "03b21312-c7f9-4cb5-a0a9-c1668d870cb9" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234720Z:03b21312-c7f9-4cb5-a0a9-c1668d870cb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "904" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"properties\": {\r\n \"correlationId\": \"920532bf-82a7-4527-b81f-6e058c18b7d8\",\r\n \"changes\": [\r\n {\r\n \"resourceId\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"changeType\": \"Ignore\",\r\n \"before\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"name\": \"querystringpstests\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n },\r\n \"after\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests\",\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"westus2\",\r\n \"name\": \"querystringpstests\",\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps696/providers/Microsoft.Storage/storageAccounts/querystringpstests?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlR3JvdXBzL3BzNjk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvcXVlcnlzdHJpbmdwc3Rlc3RzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae57f881-abd0-405c-bada-3bc4b809d095" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "27484cf6-4fbd-42c4-ad9f-e3e7c035d3aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "9e75ae6e-607c-4bfe-bc80-c187272d6da2" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234723Z:9e75ae6e-607c-4bfe-bc80-c187272d6da2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:22 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps696?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNjk2P2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "f97225a7-67d1-42c0-bfca-5f332714139a" + ], + "x-ms-correlation-request-id": [ + "f97225a7-67d1-42c0-bfca-5f332714139a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234724Z:f97225a7-67d1-42c0-bfca-5f332714139a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5pMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "9cbd9c9a-6d5f-4de1-885d-ccc29b05c686" + ], + "x-ms-correlation-request-id": [ + "9cbd9c9a-6d5f-4de1-885d-ccc29b05c686" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234739Z:9cbd9c9a-6d5f-4de1-885d-ccc29b05c686" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5pMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/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/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "dfff959d-3603-46f7-9738-75841707d152" + ], + "x-ms-correlation-request-id": [ + "dfff959d-3603-46f7-9738-75841707d152" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234754Z:dfff959d-3603-46f7-9738-75841707d152" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:47:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5pMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "56c595e5-5537-4bd0-8fd1-2627a04c662a" + ], + "x-ms-correlation-request-id": [ + "56c595e5-5537-4bd0-8fd1-2627a04c662a" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234809Z:56c595e5-5537-4bd0-8fd1-2627a04c662a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:48:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzY5Ni1XRVNUVVMyIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMyIn0?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZNU5pMVhSVk5VVlZNeUlpd2lhbTlpVEc5allYUnBiMjRpT2lKM1pYTjBkWE15SW4wP2FwaS12ZXJzaW9uPTIwMjAtMTAtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "784a39be-9881-4d3d-9b41-76eae820e5ac" + ], + "User-Agent": [ + "FxVersion/4.6.29812.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "8ec15e5f-acb6-40e7-acf7-e48b8dfb0bb4" + ], + "x-ms-correlation-request-id": [ + "8ec15e5f-acb6-40e7-acf7-e48b8dfb0bb4" + ], + "x-ms-routing-request-id": [ + "WESTCENTRALUS:20210311T234809Z:8ec15e5f-acb6-40e7-acf7-e48b8dfb0bb4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Thu, 11 Mar 2021 23:48:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-WhatIfWithQueryString": [ + "ps696", + "ps4163" + ] + }, + "Variables": { + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/sampleLinkedTemplateChild.json b/src/Resources/Resources.Test/sampleLinkedTemplateChild.json new file mode 100644 index 000000000000..bd671dba348c --- /dev/null +++ b/src/Resources/Resources.Test/sampleLinkedTemplateChild.json @@ -0,0 +1,6 @@ +{ + "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "resources": [] +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/sampleLinkedTemplateParent.json b/src/Resources/Resources.Test/sampleLinkedTemplateParent.json new file mode 100644 index 000000000000..d8da456bafad --- /dev/null +++ b/src/Resources/Resources.Test/sampleLinkedTemplateParent.json @@ -0,0 +1,22 @@ +{ + "$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", + "contentVersion": "1.0.0.0", + "parameters": {}, + "variables": {}, + "resources": [ + { + "type": "Microsoft.Resources/deployments", + "apiVersion": "2020-10-01", + "name": "linkedTemplate", + "properties": { + "mode": "Incremental", + "templateLink": { + "relativePath":"sampleLinkedTemplateChild.json", + "contentVersion":"1.0.0.0" + } + } + } + ], + "outputs": { + } + } \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 3f1c4b2d735c..cb36e7d90330 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -22,6 +22,8 @@ * Redirected bicep message to verbose stream * Removed the logic of copying Bicep template file to temp folder. * Add support of policy exemption resource type +* Fixed what-if functionality when using `-QueryString` parameter. +* Normalized `-QueryString` starting with "?" for scenarios involving dynamic parameters. ## Version 3.3.0 * Added support for Azure resources deployment in Bicep language diff --git a/tools/SecurityTools/CredScanSuppressions.json b/tools/SecurityTools/CredScanSuppressions.json index 5e6b266361de..4ddfceef95ee 100644 --- a/tools/SecurityTools/CredScanSuppressions.json +++ b/tools/SecurityTools/CredScanSuppressions.json @@ -1324,6 +1324,10 @@ { "file": "src\\Network\\Network.Test\\ScenarioTests\\CortexTests.ps1", "_justification": "Generated test resource groups are deleted after test execution" + }, + { + "file": "\\src\\Resources\\Resources.Test\\SessionRecords\\Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests\\TestWhatIfWithQueryString.json", + "_justification": "Legitimate session record. Test resources, keys and tokens are deleted." } ] -} +} \ No newline at end of file