diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs index b703d8655a9e..d8b20f564991 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs @@ -203,7 +203,9 @@ public object GetDynamicParameters() this.ResolvePath(TemplateFile), TemplateParameterObject, this.ResolvePath(TemplateParameterFile), - staticParameterNames); + staticParameterNames, + out templateFile, + this.ExecuteScript); } else { @@ -211,8 +213,11 @@ public object GetDynamicParameters() this.ResolvePath(TemplateFile), TemplateParameterObject, TemplateParameterUri, - staticParameterNames); + staticParameterNames, + out templateFile, + this.ExecuteScript); } + TemplateFile = templateFile; } else if (!string.IsNullOrEmpty(TemplateUri) && !TemplateUri.Equals(templateUri, StringComparison.OrdinalIgnoreCase)) @@ -224,7 +229,9 @@ public object GetDynamicParameters() TemplateUri, TemplateParameterObject, this.ResolvePath(TemplateParameterFile), - staticParameterNames); + staticParameterNames, + out templateUri, + this.ExecuteScript); } else { @@ -232,8 +239,11 @@ public object GetDynamicParameters() TemplateUri, TemplateParameterObject, TemplateParameterUri, - staticParameterNames); + staticParameterNames, + out templateUri, + this.ExecuteScript); } + TemplateUri = templateUri; } else if (!string.IsNullOrEmpty(TemplateSpecId) && !TemplateSpecId.Equals(templateSpecId, StringComparison.OrdinalIgnoreCase)) diff --git a/src/Resources/ResourceManager/Properties/Resources.Designer.cs b/src/Resources/ResourceManager/Properties/Resources.Designer.cs index 738f7dc62e35..acb0d3cff40b 100644 --- a/src/Resources/ResourceManager/Properties/Resources.Designer.cs +++ b/src/Resources/ResourceManager/Properties/Resources.Designer.cs @@ -700,6 +700,15 @@ internal static string NewResourceMessage { } } + /// + /// Looks up a localized string similar to Bicep has not been installed on this machine. Please visit https://github.com/Azure/bicep/releases and install Bicep.. + /// + internal static string NoBicepInstalled { + get { + return ResourceManager.GetString("NoBicepInstalled", resourceCulture); + } + } + /// /// Looks up a localized string similar to There is no deployment called '{0}' to cancel. /// diff --git a/src/Resources/ResourceManager/Properties/Resources.resx b/src/Resources/ResourceManager/Properties/Resources.resx index 183fc5dc0069..54a40ed4f71d 100644 --- a/src/Resources/ResourceManager/Properties/Resources.resx +++ b/src/Resources/ResourceManager/Properties/Resources.resx @@ -494,4 +494,7 @@ You can help us improve the accuracy of the result by opening an issue here: htt Unrecognized resource change {0}: {1}. Specify one ore more values in the following list and try again: {2}. + + Bicep has not been installed on this machine. Please visit https://github.com/Azure/bicep/releases and install Bicep. + \ No newline at end of file diff --git a/src/Resources/ResourceManager/Utilities/BicepUtility.cs b/src/Resources/ResourceManager/Utilities/BicepUtility.cs new file mode 100644 index 000000000000..ab3c8eaa74c0 --- /dev/null +++ b/src/Resources/ResourceManager/Utilities/BicepUtility.cs @@ -0,0 +1,63 @@ + +using Microsoft.Azure.Commands.Common.Authentication.Abstractions; +using Microsoft.Azure.Commands.Common.Exceptions; +using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Implementation; +using Microsoft.WindowsAzure.Commands.Utilities.Common; + +using System; +using System.Collections.Generic; +using System.IO; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.ResourceManager.Cmdlets.Utilities +{ + public static class BicepUtility + { + public static bool IsBicepExecutable = false; + + public static bool IsBicepFile(string templateFilePath) + { + return ".bicep".Equals(Path.GetExtension(templateFilePath)?.ToLower()); + } + + public delegate List ScriptExecutor(string script); + + public static bool CheckBicepExecutable(ScriptExecutor executeScript) + { + try + { + executeScript("get-command bicep"); + } + catch + { + IsBicepExecutable = false; + return IsBicepExecutable; + } + IsBicepExecutable = true; + return IsBicepExecutable; + } + + public static string BuildFile(ScriptExecutor executeScript, string bicepTemplateFilePath) + { + if (!IsBicepExecutable && !CheckBicepExecutable(executeScript)) + { + throw new AzPSApplicationException(Properties.Resources.NoBicepInstalled); + } + + executeScript($"bicep build {bicepTemplateFilePath}"); + + string jsonTemplateFilePath = Path.Combine(Path.GetDirectoryName(bicepTemplateFilePath), + Path.GetFileNameWithoutExtension(bicepTemplateFilePath) + ".json"); + + return jsonTemplateFilePath; + } + + public static string BuildFileContent(ScriptExecutor executeScript, string templateContent, out string jsonTemplateFilePath) + { + string tempFilePath = Path.GetTempFileName(); + FileUtilities.DataStore.WriteFile(tempFilePath, templateContent); + jsonTemplateFilePath = BuildFile(executeScript, tempFilePath); + return FileUtilities.DataStore.ReadFileAsText(jsonTemplateFilePath); + } + } +} diff --git a/src/Resources/ResourceManager/Utilities/TemplateUtility.cs b/src/Resources/ResourceManager/Utilities/TemplateUtility.cs index 009993465c0b..79fb864d09f7 100644 --- a/src/Resources/ResourceManager/Utilities/TemplateUtility.cs +++ b/src/Resources/ResourceManager/Utilities/TemplateUtility.cs @@ -39,9 +39,10 @@ public static class TemplateUtility /// Path to the template parameter file if present /// The existing PowerShell cmdlet parameters /// The template parameters - public static RuntimeDefinedParameterDictionary GetTemplateParametersFromFile(string templateFilePath, Hashtable templateParameterObject, string templateParameterFilePath, string[] staticParameters) + public static RuntimeDefinedParameterDictionary GetTemplateParametersFromFile(string templateFilePath, Hashtable templateParameterObject, string templateParameterFilePath, string[] staticParameters, out string jsonTemplateFilePath, BicepUtility.ScriptExecutor executeScript = null) { string templateContent = null; + jsonTemplateFilePath = templateFilePath; if (templateFilePath != null) { @@ -53,6 +54,11 @@ public static RuntimeDefinedParameterDictionary GetTemplateParametersFromFile(st { templateContent = FileUtilities.DataStore.ReadFileAsText(templateFilePath); } + + if (BicepUtility.IsBicepFile(templateFilePath)) + { + templateContent = BicepUtility.BuildFileContent(executeScript, templateContent, out jsonTemplateFilePath); + } } RuntimeDefinedParameterDictionary dynamicParameters = ParseTemplateAndExtractParameters(templateContent, templateParameterObject, templateParameterFilePath, staticParameters); diff --git a/src/Resources/Resources.Test/Resources.Test.csproj b/src/Resources/Resources.Test/Resources.Test.csproj index ac316a7873e1..e748a523071c 100644 --- a/src/Resources/Resources.Test/Resources.Test.csproj +++ b/src/Resources/Resources.Test/Resources.Test.csproj @@ -26,7 +26,9 @@ + + diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 933953ed1585..2c4711af0e69 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -155,5 +155,19 @@ public void TestNewDeploymentWithQueryString() { TestRunner.RunTestScript("Test-NewDeploymentWithQueryString"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewDeploymentFromBicepFile() + { + TestRunner.RunTestScript("Test-NewDeploymentFromBicepFile"); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestTestDeploymentFromBicepFile() + { + TestRunner.RunTestScript("Test-TestDeploymentFromBicepFile"); + } } } diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 14a8374ca862..7ebc734c5484 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -662,7 +662,6 @@ function Test-NewDeploymentWithQueryString # Assert Assert-AreEqual Succeeded $deployment.ProvisioningState - } finally @@ -670,4 +669,70 @@ function Test-NewDeploymentWithQueryString # Cleanup Clean-ResourceGroup $rgname } +} + +<# +.SYNOPSIS +Tests deployment via Bicep file. +#> +function Test-NewDeploymentFromBicepFile +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + $expectedTags = @{"key1"="value1"; "key2"="value2";} + + try + { + # Test + New-AzResourceGroup -Name $rgname -Location $rglocation + + $deployment = New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFile.bicep -Tag $expectedTags + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + Assert-True { AreHashtableEqual $expectedTags $deployment.Tags } + + $subId = (Get-AzContext).Subscription.SubscriptionId + $deploymentId = "/subscriptions/$subId/resourcegroups/$rgname/providers/Microsoft.Resources/deployments/$rname" + $getById = Get-AzResourceGroupDeployment -Id $deploymentId + Assert-AreEqual $getById.DeploymentName $deployment.DeploymentName + + [hashtable]$actualTags = $getById.Tags + Assert-True { AreHashtableEqual $expectedTags $getById.Tags } + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + +<# +.SYNOPSIS +Tests deployment template via bicep file. +#> +function Test-TestDeploymentFromBicepFile +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $location = "West US 2" + + # Test + try + { + New-AzResourceGroup -Name $rgname -Location $location + + $list = Test-AzResourceGroupDeployment -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFile.bicep + + # Assert + Assert-AreEqual 0 @($list).Count + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } } \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json new file mode 100644 index 000000000000..5f799333a4d9 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFile.json @@ -0,0 +1,4453 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "04f51ab3-9254-4598-abe6-114ebbf0187d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/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": [ + "11998" + ], + "x-ms-request-id": [ + "f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "x-ms-correlation-request-id": [ + "f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094703Z:f959ad85-65f3-4441-a903-e8bd28f5e819" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:03 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d8cb111-aeff-4464-abac-0b89ef0e91d5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "x-ms-correlation-request-id": [ + "88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094746Z:88da35ff-0417-4883-b029-6b79a1d82f20" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:45 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1e298de-30b4-483e-83b9-6d2bb77cdba5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "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": [ + "f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "x-ms-correlation-request-id": [ + "f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094707Z:f273cb9b-090a-4e14-b09a-ef27b52f4929" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:06 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991\",\r\n \"name\": \"ps2991\",\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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzMvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "31594afd-d257-42bc-b27d-6b76c452c6a5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "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": [ + "1175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "x-ms-correlation-request-id": [ + "4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094711Z:4a9f9903-7fb9-43a1-b4b2-4877ce9e359f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:10 GMT" + ], + "Content-Length": [ + "867" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:10.1915211Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"4a9f9903-7fb9-43a1-b4b2-4877ce9e359f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n },\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7e171d7c-8e1a-4524-a6fe-548236b3b458" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "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": [ + "1175" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operationStatuses/08585893476535056652?api-version=2020-10-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "x-ms-correlation-request-id": [ + "32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094715Z:32af6107-f25d-42bc-bf45-c5a1083c68a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:14 GMT" + ], + "Content-Length": [ + "710" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2021-02-02T09:47:13.9459863Z\",\r\n \"duration\": \"PT1.9740376S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5b360726-50ea-4e2d-bfae-2b6976754e57" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "x-ms-correlation-request-id": [ + "a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094715Z:a25d6d48-5574-4634-94e0-a19a6e8d7a79" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47: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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8f0d51d5-7a8f-4e99-948f-65f5b6e5a16a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "x-ms-correlation-request-id": [ + "a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094716Z:a687de53-b0be-47a8-b37f-a9d9a295ba6a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:16 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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "203777c1-cb5a-4cc5-a433-9f7d2fa90f12" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "x-ms-correlation-request-id": [ + "79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094718Z:79cc0b23-4dbb-4061-8f97-e93f9d870bf6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:17 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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "367c2b45-6821-4843-b746-8b3d7d6bb91d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "x-ms-correlation-request-id": [ + "039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094719Z:039f68db-dceb-4289-b08e-a6ed9b486443" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:18 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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ef50037a-28e3-4aa1-8c84-7fe30c1fd155" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "4aa90169-0672-42bd-9f6b-920364016b61" + ], + "x-ms-correlation-request-id": [ + "4aa90169-0672-42bd-9f6b-920364016b61" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094720Z:4aa90169-0672-42bd-9f6b-920364016b61" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:19 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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8bd3191c-266a-4ab9-94de-eb30b2108ef8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "x-ms-correlation-request-id": [ + "2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094721Z:2c0ca03e-9d4d-49c8-9dd8-fd530b76bf36" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:20 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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58536bc3-9845-43df-aa57-bb734586484f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "693cb392-29e5-4580-a648-67084511eb8d" + ], + "x-ms-correlation-request-id": [ + "693cb392-29e5-4580-a648-67084511eb8d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094722Z:693cb392-29e5-4580-a648-67084511eb8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "560487cd-0f5f-48bb-86d8-3cc472df5faa" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "x-ms-correlation-request-id": [ + "f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094723Z:f2ce8b87-8252-4bad-bd1a-f56e9cae0b84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4b04d94e-3692-4c31-b6a0-fd7cc9d051f9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "x-ms-correlation-request-id": [ + "ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094724Z:ddcb5ba2-5f6e-4f68-9955-72bfc1ff21f6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7363aab0-52bb-45d3-8251-499b59231089" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "x-ms-correlation-request-id": [ + "9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094725Z:9f04f4bf-8f3c-49b8-848e-7be9b0663dac" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f41f425b-1b7c-4b85-9fe1-35414c593f7a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "x-ms-correlation-request-id": [ + "1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094726Z:1ea2cc3b-5c38-4e05-9f23-33736053ced4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "238af075-3465-4b6c-a153-b96191343467" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "x-ms-correlation-request-id": [ + "696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094727Z:696d7ee7-c6bb-4837-bf1b-eadb8f3391b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8e069644-d596-4f9c-9377-4686198e7fb4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "x-ms-correlation-request-id": [ + "c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094728Z:c7a8ab78-d43b-460c-8880-e0b4e25c0276" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83b4d63c-5b5d-46e7-9522-5fe657cfb004" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "90249787-0489-4d82-9f92-9f62959b8549" + ], + "x-ms-correlation-request-id": [ + "90249787-0489-4d82-9f92-9f62959b8549" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094729Z:90249787-0489-4d82-9f92-9f62959b8549" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0280a0d6-1db9-468b-b270-fe080b957e9b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "x-ms-correlation-request-id": [ + "db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094730Z:db2af950-98a3-454f-b5af-c7fcda63dea4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a519d17-e0fa-4ac2-aee0-3911abdd0f10" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "x-ms-correlation-request-id": [ + "49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094731Z:49ac68f2-da7a-4874-93e9-4c3b38b69200" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c2251242-9b2f-47a3-8f88-67539820c6c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "be13ba6a-8262-4205-b553-de712ab42be7" + ], + "x-ms-correlation-request-id": [ + "be13ba6a-8262-4205-b553-de712ab42be7" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094732Z:be13ba6a-8262-4205-b553-de712ab42be7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7aa1741b-2deb-4160-8c76-2c3385b0d621" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "x-ms-correlation-request-id": [ + "d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094733Z:d5a0ddc7-c3c9-4bdd-b757-1d3a056f5ee4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8fe98ead-cd96-422d-bd6b-eb7d33761924" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "x-ms-correlation-request-id": [ + "be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094735Z:be37f3c1-7be6-4e1d-94d0-6ca5601b207f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c9456237-4f2c-4fca-a058-9c7bb36d44c2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "474957d2-caf5-42b9-898d-feff78dd6424" + ], + "x-ms-correlation-request-id": [ + "474957d2-caf5-42b9-898d-feff78dd6424" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094736Z:474957d2-caf5-42b9-898d-feff78dd6424" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "52bccf5a-665c-4626-9a09-90032fd2b509" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "b461c962-e507-4e29-93ac-f79c0690911b" + ], + "x-ms-correlation-request-id": [ + "b461c962-e507-4e29-93ac-f79c0690911b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094737Z:b461c962-e507-4e29-93ac-f79c0690911b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "086c632c-3084-4822-909b-8e06d6edd13c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "x-ms-correlation-request-id": [ + "8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094738Z:8f8d4564-0fbf-45c2-82bf-f470bb5621c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12d6e684-4fc6-43fd-a661-dcfe5782cfb0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "98fadb81-b643-417e-85ad-204df4cab428" + ], + "x-ms-correlation-request-id": [ + "98fadb81-b643-417e-85ad-204df4cab428" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094739Z:98fadb81-b643-417e-85ad-204df4cab428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3adf5b77-171d-4e69-b8cb-b725df4f541a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "x-ms-correlation-request-id": [ + "7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094740Z:7a3330e6-c5c6-4f4a-bf2d-e2996d3bc23b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29dc65ce-967b-4848-80b1-7c21fcab9ede" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "x-ms-correlation-request-id": [ + "cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094741Z:cb10fc74-a9f7-4179-bb7f-07558b0a3e25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a529b399-8e5b-4364-a2f8-d1d2cc5c00bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "x-ms-correlation-request-id": [ + "97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094742Z:97b9d7c3-8020-457d-9f3d-61bad5f61c5f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ed306ac-a9df-48b4-b2b2-734cb34ce11b" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "x-ms-correlation-request-id": [ + "ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094743Z:ee5f7de0-99e7-4496-866b-e911abbba296" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "725" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5370037Z\",\r\n \"duration\": \"PT6.3080788S\",\r\n \"trackingId\": \"b3060f7a-7bba-4f23-a7e2-5f551caec8b6\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/deployments/ps2273/operations?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9kZXBsb3ltZW50cy9wczIyNzMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "219a2dad-04ad-4ede-abba-f174c7fae213" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "x-ms-correlation-request-id": [ + "7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094744Z:7eb5b345-ff38-4bee-8fb1-d1926f1768d0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1161" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/D1445A9BE183AF8F\",\r\n \"operationId\": \"D1445A9BE183AF8F\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.7880116Z\",\r\n \"duration\": \"PT28.5590867S\",\r\n \"trackingId\": \"95997be2-0a59-4790-9f1e-99f4190e1e5a\",\r\n \"serviceRequestId\": \"5c2cf0bc-cd4e-4619-aa13-7b1f519f6448\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorage007\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273/operations/08585893476535056652\",\r\n \"operationId\": \"08585893476535056652\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"EvaluateDeploymentOutput\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.8488027Z\",\r\n \"duration\": \"PT28.6198778S\",\r\n \"trackingId\": \"05e8fd73-1e09-450f-9540-c67eb75e6994\",\r\n \"statusCode\": \"OK\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b440f827-82e2-4338-b2b3-bbd909e565b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11997" + ], + "x-ms-request-id": [ + "2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "x-ms-correlation-request-id": [ + "2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094716Z:2a95eca3-7d48-4ac7-a713-5c1880232d00" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:15 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "42a332e5-6dd3-4d1d-bc74-900a4277aaba" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11995" + ], + "x-ms-request-id": [ + "cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "x-ms-correlation-request-id": [ + "cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094717Z:cc6e8832-6321-4e69-b5d1-710fdbb4284d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:16 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fbd7c1bc-0ccf-4a8b-8aaf-ef73444a411c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11993" + ], + "x-ms-request-id": [ + "ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "x-ms-correlation-request-id": [ + "ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094718Z:ee1ea702-3086-48e0-b8e2-d3b792fe33fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:17 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f6c13d83-357d-40c3-a7b7-c10c2828e873" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11991" + ], + "x-ms-request-id": [ + "3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "x-ms-correlation-request-id": [ + "3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094719Z:3e0ecdf0-c5b4-4a92-ab51-e47933c48d2e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:19 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1fe73a32-82e1-4f7e-bfe3-aa02100ca8c4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11989" + ], + "x-ms-request-id": [ + "ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "x-ms-correlation-request-id": [ + "ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094720Z:ce1c5b2c-0500-4e9e-a0cf-7621ee77541f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:20 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "88e0d988-4c76-48fa-ab2b-37378c8002c8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11987" + ], + "x-ms-request-id": [ + "581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "x-ms-correlation-request-id": [ + "581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094721Z:581f0886-88e2-47f4-a3c0-b6f607f19f28" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:21 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:15.1724964Z\",\r\n \"duration\": \"PT3.2005477S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae734e31-febc-424b-ae12-539c8c5920bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11985" + ], + "x-ms-request-id": [ + "87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "x-ms-correlation-request-id": [ + "87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094722Z:87a79eee-a3d8-42a2-80c7-2c3dc5acb2c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:22 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "96f43f8a-cf13-4311-ac67-3b331c59fed9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11983" + ], + "x-ms-request-id": [ + "5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "x-ms-correlation-request-id": [ + "5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094723Z:5422ddf7-bd59-4c9e-9ef0-77b9f118e13b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:23 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "38064cee-e381-4feb-bb90-ce901228faec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11981" + ], + "x-ms-request-id": [ + "079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "x-ms-correlation-request-id": [ + "079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094724Z:079d8d7b-f964-4c48-9147-a7f50994aff0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:24 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e410458a-6fad-49ca-a9e0-ed1c1cff9533" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11979" + ], + "x-ms-request-id": [ + "7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "x-ms-correlation-request-id": [ + "7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094725Z:7d2e9eb9-ef4b-4ced-aee8-c5b867c0821d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:25 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "45b2696d-30a2-4746-a436-72185ae52f68" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11977" + ], + "x-ms-request-id": [ + "fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "x-ms-correlation-request-id": [ + "fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094726Z:fe8b7c4e-328f-4b23-8c31-d8e6dfc31587" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:26 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3a39acae-9599-45ea-af12-d683760ddaac" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11975" + ], + "x-ms-request-id": [ + "59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "x-ms-correlation-request-id": [ + "59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094728Z:59cc0c16-13fd-4574-bf7e-001beaa8ff8f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e1f5b9e0-88cf-443e-9d9c-74ef8c9b7919" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11973" + ], + "x-ms-request-id": [ + "55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "x-ms-correlation-request-id": [ + "55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094729Z:55e77a88-5d84-4789-a3d5-662feb89f588" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07156b43-7218-4b92-a632-1599b8b6ec84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11971" + ], + "x-ms-request-id": [ + "3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "x-ms-correlation-request-id": [ + "3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094730Z:3688dea4-e6f8-47e2-b038-da7f70c78fc6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d1f6e0da-2644-41d9-9ab0-8652be1bb6f5" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11969" + ], + "x-ms-request-id": [ + "7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "x-ms-correlation-request-id": [ + "7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094731Z:7bfa54c6-1a29-4a87-9734-1726dc592d92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "14156190-069d-4738-9891-8f789502f9e2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11967" + ], + "x-ms-request-id": [ + "0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "x-ms-correlation-request-id": [ + "0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094732Z:0c50453d-f786-4ff5-bca0-f8d063372dbc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "76c493e9-6ca1-4339-8bf4-ee429d779e28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11965" + ], + "x-ms-request-id": [ + "81692c91-2197-4c7d-9847-da8738b018fa" + ], + "x-ms-correlation-request-id": [ + "81692c91-2197-4c7d-9847-da8738b018fa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094733Z:81692c91-2197-4c7d-9847-da8738b018fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "606641e9-04f2-4782-a854-6382a29c8ef4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11963" + ], + "x-ms-request-id": [ + "cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "x-ms-correlation-request-id": [ + "cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094734Z:cbd7e9cb-6944-4bbb-a5d6-53d033e67157" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0659771c-b94a-4ac8-94af-c5c6f7697811" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11961" + ], + "x-ms-request-id": [ + "0f105c6d-f382-4a33-879a-e857bab68564" + ], + "x-ms-correlation-request-id": [ + "0f105c6d-f382-4a33-879a-e857bab68564" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094735Z:0f105c6d-f382-4a33-879a-e857bab68564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1af64b7e-962e-4a03-9186-266aaf75d423" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11959" + ], + "x-ms-request-id": [ + "57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "x-ms-correlation-request-id": [ + "57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094736Z:57dd6116-c66b-4cdf-b3e4-7d3cfef4d160" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8011e0cb-7ecd-4c81-9ba3-513f0ffcd63e" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11957" + ], + "x-ms-request-id": [ + "d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "x-ms-correlation-request-id": [ + "d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094737Z:d7675327-a0e1-4985-abb8-768cb1066cc5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e500f6d6-3c79-4119-bf83-15f85626c8ca" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11955" + ], + "x-ms-request-id": [ + "ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "x-ms-correlation-request-id": [ + "ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094738Z:ac297c61-df43-4d2d-813d-2f1b52f0ad78" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "95dec050-3be9-4c76-a327-ee8addfbfafe" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11953" + ], + "x-ms-request-id": [ + "8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "x-ms-correlation-request-id": [ + "8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094739Z:8ac2fa13-475d-4696-a7bd-2f551622c615" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b6ded65d-d88a-4e51-87d1-e7b112daf156" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11951" + ], + "x-ms-request-id": [ + "6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "x-ms-correlation-request-id": [ + "6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094740Z:6767861f-ded5-42f6-a9c4-a63944e6dc0f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1869c2eb-c2ed-4a92-be62-e105ba1cdd36" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11949" + ], + "x-ms-request-id": [ + "8d9225a9-015a-4180-845e-956446ffd657" + ], + "x-ms-correlation-request-id": [ + "8d9225a9-015a-4180-845e-956446ffd657" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094741Z:8d9225a9-015a-4180-845e-956446ffd657" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0223b4c7-a2c8-4906-b49e-6c5b147f23a7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11947" + ], + "x-ms-request-id": [ + "01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "x-ms-correlation-request-id": [ + "01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094742Z:01c9e19c-e2ec-469c-a628-e22b909d47cb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "316ecc1a-1399-42a6-ba71-0f0e2ecb0f75" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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": [ + "11945" + ], + "x-ms-request-id": [ + "ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "x-ms-correlation-request-id": [ + "ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094743Z:ed44aa70-4e33-41da-8e8f-cb3cdb496b0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "709" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2021-02-02T09:47:21.5148179Z\",\r\n \"duration\": \"PT9.5428692S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e852f2e2-8cf3-407c-8027-f52ee56bf883" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "x-ms-correlation-request-id": [ + "5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094745Z:5b0d56ed-786f-4ea7-9013-ce6900b5638f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1056" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.864301Z\",\r\n \"duration\": \"PT31.8923523S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991/providers/Microsoft.Resources/deployments/ps2273?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MS9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczIyNzM/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e3df912c-6cec-4073-a023-01f6baa39c9a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "x-ms-correlation-request-id": [ + "c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094746Z:c31ecf3f-57ef-4beb-ba6a-e78dd57f244e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1056" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Resources/deployments/ps2273\",\r\n \"name\": \"ps2273\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"tags\": {\r\n \"key2\": \"value2\",\r\n \"key1\": \"value1\"\r\n },\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:47:43.864301Z\",\r\n \"duration\": \"PT31.8923523S\",\r\n \"correlationId\": \"32af6107-f25d-42bc-bf45-c5a1083c68a3\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"String\",\r\n \"value\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps2991/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps2991?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzMjk5MT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e631de6-4abf-4117-bc7a-f90cf4dfa611" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "x-ms-correlation-request-id": [ + "847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094748Z:847b73d0-d755-466d-a484-c8530f0d7f5e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:47:48 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "x-ms-correlation-request-id": [ + "c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094804Z:c482da67-76ee-4b51-ba65-26b2557a5660" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:03 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "x-ms-correlation-request-id": [ + "e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094819Z:e3b65a9e-7739-4699-9186-fb05af947b91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:19 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "a90d0889-dffa-4ac7-ae78-339765090985" + ], + "x-ms-correlation-request-id": [ + "a90d0889-dffa-4ac7-ae78-339765090985" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094835Z:a90d0889-dffa-4ac7-ae78-339765090985" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:34 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "x-ms-correlation-request-id": [ + "11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094850Z:11eb44b0-9d02-41f6-8131-2cb59fc60961" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:48:50 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "x-ms-correlation-request-id": [ + "7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094906Z:7a2be2f5-080d-4906-93cc-98098f0c9402" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "x-ms-correlation-request-id": [ + "7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094921Z:7a60e979-859f-4150-ae4b-4a1cbe90e4f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "x-ms-correlation-request-id": [ + "d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094936Z:d1256164-bf70-41f8-bd8b-8784934a0910" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzI5OTEtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpJNU9URXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "x-ms-correlation-request-id": [ + "3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094937Z:3385e595-dc95-4cb2-b1f4-6d93faf341f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:49:36 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewDeploymentFromBicepFile": [ + "ps2991", + "ps2273" + ] + }, + "Variables": { + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json new file mode 100644 index 000000000000..2b38b83849d3 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestTestDeploymentFromBicepFile.json @@ -0,0 +1,562 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f4ab663d-48ae-4a17-bf6e-9620cfc9bb58" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/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": [ + "11997" + ], + "x-ms-request-id": [ + "58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "x-ms-correlation-request-id": [ + "58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094528Z:58ca855a-278f-4a0e-aa5f-87693562fa25" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:28 GMT" + ], + "Content-Length": [ + "98" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "16c538d6-4403-4cdc-a184-f643b81fe4db" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "x-ms-correlation-request-id": [ + "0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094535Z:0b605887-cfaf-4160-9694-9543f3a557fe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:35 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9ea64a64-6ee5-4565-b0a0-088bcb4db1b4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "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": [ + "1197" + ], + "x-ms-request-id": [ + "91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "x-ms-correlation-request-id": [ + "91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094530Z:91b7e299-bd70-4718-b30d-4eee592d3184" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:30 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032\",\r\n \"name\": \"ps6032\",\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/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032/providers/Microsoft.Resources/deployments/69d6ffd5-2e5d-4815-b511-8c4d9d28fc50/validate?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMi9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy82OWQ2ZmZkNS0yZTVkLTQ4MTUtYjUxMS04YzRkOWQyOGZjNTAvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMC0xMC0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"bezstorage007\"\r\n }\r\n },\r\n \"functions\": [],\r\n \"variables\": {\r\n \"storageSku\": \"Standard_LRS\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"apiVersion\": \"2019-06-01\",\r\n \"name\": \"[parameters('name')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"kind\": \"Storage\",\r\n \"sku\": {\r\n \"name\": \"[variables('storageSku')]\"\r\n }\r\n }\r\n ],\r\n \"outputs\": {\r\n \"storageId\": {\r\n \"type\": \"string\",\r\n \"value\": \"[resourceId('Microsoft.Storage/storageAccounts', parameters('name'))]\"\r\n }\r\n }\r\n },\r\n \"parameters\": {},\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "629b0228-f209-4824-89ab-f714eb48d721" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "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": [ + "1111" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "x-ms-correlation-request-id": [ + "c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094534Z:c43ae395-a81f-4f47-9322-336b5ebcf00f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:34 GMT" + ], + "Content-Length": [ + "886" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032/providers/Microsoft.Resources/deployments/69d6ffd5-2e5d-4815-b511-8c4d9d28fc50\",\r\n \"name\": \"69d6ffd5-2e5d-4815-b511-8c4d9d28fc50\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"15467936349540559989\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorage007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2021-02-02T09:45:33.8302784Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"c43ae395-a81f-4f47-9322-336b5ebcf00f\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/ps6032/providers/Microsoft.Storage/storageAccounts/bezstorage007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/ps6032?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL3BzNjAzMj9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b04fd680-e4ea-4190-a8e6-770077aa65ef" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "7f7c8c94-492e-4270-8536-4529b7258563" + ], + "x-ms-correlation-request-id": [ + "7f7c8c94-492e-4270-8536-4529b7258563" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094538Z:7f7c8c94-492e-4270-8536-4529b7258563" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:38 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "x-ms-correlation-request-id": [ + "a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094554Z:a13693e9-c387-4bd5-8eb6-1a8a7fc55e89" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:45:53 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/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/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "x-ms-correlation-request-id": [ + "e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094609Z:e1bc4687-7b14-4e00-b192-9180de3c932c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "x-ms-correlation-request-id": [ + "837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094625Z:837c646d-0602-4bbc-a4f0-41eebdf3fd30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:24 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzYwMzItV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2020-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpZd016SXRWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIwLTEwLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29518.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.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": [ + "a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "x-ms-correlation-request-id": [ + "a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210202T094625Z:a4cd3ad0-79f5-498b-8cd6-05637636685c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 02 Feb 2021 09:46:25 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-TestDeploymentFromBicepFile": [ + "ps6032", + "ps476" + ] + }, + "Variables": { + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep b/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep new file mode 100644 index 000000000000..de738a3957a8 --- /dev/null +++ b/src/Resources/Resources.Test/sampleDeploymentBicepFile.bicep @@ -0,0 +1,14 @@ +param location string = 'westus' +param name string = 'bezstorage007' +var storageSku = 'Standard_LRS' + +resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' = { + name: name + location: location + kind: 'Storage' + sku: { + name: storageSku + } +} + +output storageId string = stg.id \ No newline at end of file diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 061434a7c8d5..ff959f3a4733 100644 --- a/src/Resources/Resources/ChangeLog.md +++ b/src/Resources/Resources/ChangeLog.md @@ -19,6 +19,7 @@ --> ## Upcoming Release +* Added support for Azure resources deployment with Bicep language ## Version 3.2.0 * Added support for -QueryString parameter in New-Az*Deployments cmdlets