From b0303172f25eee55506937874e62b2f073db58ad Mon Sep 17 00:00:00 2001 From: Muhammad Usman Date: Wed, 12 Apr 2023 11:34:24 -0500 Subject: [PATCH 1/3] add integration test for deployment using bicepparam --- .../ScenarioTests/DeploymentTests.cs | 7 ++++ .../ScenarioTests/DeploymentTests.ps1 | 35 ++++++++++++++++++- src/Resources/Resources.Test/bicepconfig.json | 5 +++ ...sampleDeploymentBicepFileParams.bicepparam | 5 +++ ...eploymentBicepFileWithoutParamValues.bicep | 14 ++++++++ 5 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 src/Resources/Resources.Test/bicepconfig.json create mode 100644 src/Resources/Resources.Test/sampleDeploymentBicepFileParams.bicepparam create mode 100644 src/Resources/Resources.Test/sampleDeploymentBicepFileWithoutParamValues.bicep diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs index 75023ec2b8cf..274446abc1f9 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.cs @@ -195,6 +195,13 @@ public void TestTestDeploymentFromBicepFile() TestRunner.RunTestScript("Test-TestDeploymentFromBicepFile"); } + [Fact] + [Trait(Category.AcceptanceType, Category.LiveOnly)] + public void TestNewDeploymentFromBicepFileAndBicepparamFile() + { + TestRunner.RunTestScript("Test-NewDeploymentFromBicepFileAndBicepparamFile"); + } + //Please make sure to re-record this test if any changes are made to WhatIf, QueryString or ResourceGroupDeployments [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 index 4fb4ee1de153..d572257f8c85 100644 --- a/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 +++ b/src/Resources/Resources.Test/ScenarioTests/DeploymentTests.ps1 @@ -843,7 +843,7 @@ function Test-TestDeploymentFromBicepFile New-AzResourceGroup -Name $rgname -Location $location $list = Test-AzResourceGroupDeployment -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFile.bicep - + # Assert Assert-AreEqual 0 @($list).Count } @@ -854,6 +854,39 @@ function Test-TestDeploymentFromBicepFile } } +<# +.SYNOPSIS +Tests deployment via Bicep file. +#> +function Test-NewDeploymentFromBicepFileAndBicepparamFile +{ + # Setup + $rgname = Get-ResourceGroupName + $rname = Get-ResourceName + $rglocation = "West US 2" + + try + { + # Test + New-AzResourceGroup -Name $rgname -Location $rglocation + + $deployment = New-AzResourceGroupDeployment -Name $rname -ResourceGroupName $rgname -TemplateFile sampleDeploymentBicepFileWithoutParamValues.bicep -TemplateParameterFile sampleDeploymentBicepFileParams.bicepparam + + # Assert + Assert-AreEqual Succeeded $deployment.ProvisioningState + + $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 + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# .SYNOPSIS is running live in target environment diff --git a/src/Resources/Resources.Test/bicepconfig.json b/src/Resources/Resources.Test/bicepconfig.json new file mode 100644 index 000000000000..71fb1d8405f1 --- /dev/null +++ b/src/Resources/Resources.Test/bicepconfig.json @@ -0,0 +1,5 @@ +{ + "experimentalFeaturesEnabled": { + "paramsFiles": true + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/sampleDeploymentBicepFileParams.bicepparam b/src/Resources/Resources.Test/sampleDeploymentBicepFileParams.bicepparam new file mode 100644 index 000000000000..9c43b494a617 --- /dev/null +++ b/src/Resources/Resources.Test/sampleDeploymentBicepFileParams.bicepparam @@ -0,0 +1,5 @@ +using 'sampleDeploymentBicepFileWithoutParamValues.bicep' + +param location = 'westus2' +param name = 'bezstorageparam0007' +param storageSku = 'Standard_LRS' \ No newline at end of file diff --git a/src/Resources/Resources.Test/sampleDeploymentBicepFileWithoutParamValues.bicep b/src/Resources/Resources.Test/sampleDeploymentBicepFileWithoutParamValues.bicep new file mode 100644 index 000000000000..33e59f6bc299 --- /dev/null +++ b/src/Resources/Resources.Test/sampleDeploymentBicepFileWithoutParamValues.bicep @@ -0,0 +1,14 @@ +param location string +param name string +param storageSku string + +resource stg 'Microsoft.Storage/storageAccounts@2019-06-01' = { + name: name + location: location + kind: 'Storage' + sku: { + name: storageSku + } +} + +output storageId string = stg.id From 06dea905ceb792ebbd5510e707c8129b00d15e26 Mon Sep 17 00:00:00 2001 From: Muhammad Usman Date: Wed, 12 Apr 2023 12:31:53 -0500 Subject: [PATCH 2/3] add changes for bicepparam file deployment --- .../ResourceWithParameterCmdletBase.cs | 17 +- .../Properties/Resources.Designer.cs | 18 + .../ResourceManager/Properties/Resources.resx | 6 + .../ResourceManager/Utilities/BicepUtility.cs | 26 + .../Resources.Test/Resources.Test.csproj | 1 + ...loymentFromBicepFileAndBicepparamFile.json | 9280 +++++++++++++++++ .../UnitTests/Utilities/TestBicepUtility.cs | 8 + 7 files changed, 9355 insertions(+), 1 deletion(-) create mode 100644 src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFileAndBicepparamFile.json diff --git a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs index 9b31efda6e5e..e7113986260b 100644 --- a/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs +++ b/src/Resources/ResourceManager/Implementation/CmdletBase/ResourceWithParameterCmdletBase.cs @@ -19,7 +19,7 @@ using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; - +using Newtonsoft.Json.Bson; using Newtonsoft.Json.Linq; using System; @@ -191,9 +191,19 @@ protected override void OnBeginProcessing() throw new NotSupportedException($"'-TemplateUri {TemplateUri}' is not supported. Please download the bicep file and pass it using -TemplateFile."); } + if (BicepUtility.IsBicepparamFile(TemplateParameterFile) && !BicepUtility.IsBicepFile(TemplateFile)) + { + throw new NotSupportedException($"Bicepparam file {TemplateParameterFile} is only supported with a Bicep template file"); + } + if (BicepUtility.IsBicepFile(TemplateFile)) + { BuildAndUseBicepTemplate(); + if (BicepUtility.IsBicepparamFile(TemplateParameterFile)) + BuildAndUseBicepParameters(); + } + if (!this.IsParameterBound(c => c.SkipTemplateParameterPrompt)) { // Resolve the static parameter names for this cmdlet: @@ -460,5 +470,10 @@ protected void BuildAndUseBicepTemplate() { TemplateFile = BicepUtility.BuildFile(this.ResolvePath(TemplateFile), this.WriteVerbose, this.WriteWarning); } + + protected void BuildAndUseBicepParameters() + { + TemplateParameterFile = BicepUtility.BuildParamFile(this.ResolvePath(TemplateParameterFile), this.WriteVerbose, this.WriteWarning); + } } } diff --git a/src/Resources/ResourceManager/Properties/Resources.Designer.cs b/src/Resources/ResourceManager/Properties/Resources.Designer.cs index 9b4737d99f5f..633aa4c49e2b 100644 --- a/src/Resources/ResourceManager/Properties/Resources.Designer.cs +++ b/src/Resources/ResourceManager/Properties/Resources.Designer.cs @@ -96,6 +96,15 @@ internal static string BuildBicepFileToJsonFailed { } } + /// + /// Looks up a localized string similar to Build bicepparam file '{0}' to json failed.. + /// + internal static string BuildBicepparamFileToJsonFailed { + get { + return ResourceManager.GetString("BuildBicepparamFileToJsonFailed", resourceCulture); + } + } + /// /// Looks up a localized string similar to Cancelling active deployment .... /// @@ -484,6 +493,15 @@ internal static string InvalidBicepFilePath { } } + /// + /// Looks up a localized string similar to Invalid Bicepparam file path.. + /// + internal static string InvalidBicepparamFilePath { + get { + return ResourceManager.GetString("InvalidBicepparamFilePath", resourceCulture); + } + } + /// /// Looks up a localized string similar to Unrecognized resource change {0}: {1}. Specify one ore more values in the following list and try again: {2}.. /// diff --git a/src/Resources/ResourceManager/Properties/Resources.resx b/src/Resources/ResourceManager/Properties/Resources.resx index 290880d718d7..623f5284360f 100644 --- a/src/Resources/ResourceManager/Properties/Resources.resx +++ b/src/Resources/ResourceManager/Properties/Resources.resx @@ -512,4 +512,10 @@ You can help us improve the accuracy of the result by opening an issue here: htt Build bicep file '{0}' to json failed. + + Invalid Bicepparam file path. + + + Build bicepparam file '{0}' to json failed. + \ No newline at end of file diff --git a/src/Resources/ResourceManager/Utilities/BicepUtility.cs b/src/Resources/ResourceManager/Utilities/BicepUtility.cs index 005892f17c3a..bafd263f2088 100644 --- a/src/Resources/ResourceManager/Utilities/BicepUtility.cs +++ b/src/Resources/ResourceManager/Utilities/BicepUtility.cs @@ -32,11 +32,16 @@ internal static class BicepUtility private const string MinimalVersionRequirementForBicepPublishWithOptionalDocumentationUriParameter = "0.14.46"; + private const string MinimalVersionRequirementForBicepparamFileBuild = "0.16.1"; + public delegate void OutputCallback(string msg); public static bool IsBicepFile(string templateFilePath) => ".bicep".Equals(Path.GetExtension(templateFilePath), StringComparison.OrdinalIgnoreCase); + public static bool IsBicepparamFile(string parametersFilePath) => + ".bicepparam".Equals(Path.GetExtension(parametersFilePath), StringComparison.OrdinalIgnoreCase); + public static string BuildFile(string bicepTemplateFilePath, OutputCallback writeVerbose = null, OutputCallback writeWarning = null) { if (!FileUtilities.DataStore.FileExists(bicepTemplateFilePath)) @@ -58,6 +63,27 @@ public static string BuildFile(string bicepTemplateFilePath, OutputCallback writ return buildResultPath; } + public static string BuildParamFile(string bicepParamFilePath, OutputCallback writeVerbose = null, OutputCallback writeWarning = null) + { + if (!FileUtilities.DataStore.FileExists(bicepParamFilePath)) + { + throw new AzPSArgumentException(Properties.Resources.InvalidBicepparamFilePath, "TemplateParameterFile"); + } + + string tempDirectory = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); + Directory.CreateDirectory(tempDirectory); + + string buildResultPath = Path.Combine(tempDirectory, Path.GetFileName(bicepParamFilePath)).Replace(".bicepparam", ".json"); + RunBicepCommand($"bicep build-params '{bicepParamFilePath}' --outfile '{buildResultPath}'", MinimalVersionRequirementForBicepparamFileBuild, writeVerbose, writeWarning); + + if (!FileUtilities.DataStore.FileExists(buildResultPath)) + { + throw new AzPSApplicationException(string.Format(Properties.Resources.BuildBicepparamFileToJsonFailed, bicepParamFilePath)); + } + + return buildResultPath; + } + public static void PublishFile(string bicepFilePath, string target, string documentationUri = null, OutputCallback writeVerbose = null, OutputCallback writeWarning = null) { if (!FileUtilities.DataStore.FileExists(bicepFilePath)) diff --git a/src/Resources/Resources.Test/Resources.Test.csproj b/src/Resources/Resources.Test/Resources.Test.csproj index 4c299cbb362b..b3e7849eb8b4 100644 --- a/src/Resources/Resources.Test/Resources.Test.csproj +++ b/src/Resources/Resources.Test/Resources.Test.csproj @@ -29,6 +29,7 @@ + diff --git a/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFileAndBicepparamFile.json b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFileAndBicepparamFile.json new file mode 100644 index 000000000000..df88561c1fc2 --- /dev/null +++ b/src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.DeploymentTests/TestNewDeploymentFromBicepFileAndBicepparamFile.json @@ -0,0 +1,9280 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOD9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "HEAD", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b17444c0-7525-4121-bd8f-a093716344bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e5e15a7c-0aea-41fe-bd8a-5f7ccb9a9f5d" + ], + "x-ms-correlation-request-id": [ + "e5e15a7c-0aea-41fe-bd8a-5f7ccb9a9f5d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184817Z:e5e15a7c-0aea-41fe-bd8a-5f7ccb9a9f5d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:17 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOD9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "HEAD", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "fa1b83dc-c63d-4fc8-ad79-5442a53d5fea" + ], + "x-ms-correlation-request-id": [ + "fa1b83dc-c63d-4fc8-ad79-5442a53d5fea" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:fa1b83dc-c63d-4fc8-ad79-5442a53d5fea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:52 GMT" + ], + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 204 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOD9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b17444c0-7525-4121-bd8f-a093716344bf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "31" + ] + }, + "RequestBody": "{\r\n \"location\": \"West US 2\"\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "e49e6577-4589-4eb5-9db8-9de8617ec598" + ], + "x-ms-correlation-request-id": [ + "e49e6577-4589-4eb5-9db8-9de8617ec598" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184818Z:e49e6577-4589-4eb5-9db8-9de8617ec598" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:18 GMT" + ], + "Content-Length": [ + "210" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318\",\r\n \"name\": \"ps4318\",\r\n \"type\": \"Microsoft.Resources/resourceGroups\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/validate?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTYvdmFsaWRhdGU/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "POST", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1381" + ] + }, + "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 \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.16.1.55165\",\r\n \"templateHash\": \"7497673863834157045\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"string\"\r\n }\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\": \"[parameters('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 \"storageSku\": {\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"value\": \"bezstorageparam0007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "feda1715-641f-4013-be0f-0fe0931dba67" + ], + "x-ms-correlation-request-id": [ + "feda1715-641f-4013-be0f-0fe0931dba67" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184826Z:feda1715-641f-4013-be0f-0fe0931dba67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:25 GMT" + ], + "Content-Length": [ + "885" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"0001-01-01T00:00:00Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"feda1715-641f-4013-be0f-0fe0931dba67\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [],\r\n \"validatedResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "1381" + ] + }, + "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 \"metadata\": {\r\n \"_generator\": {\r\n \"name\": \"bicep\",\r\n \"version\": \"0.16.1.55165\",\r\n \"templateHash\": \"7497673863834157045\"\r\n }\r\n },\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"string\"\r\n },\r\n \"name\": {\r\n \"type\": \"string\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"string\"\r\n }\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\": \"[parameters('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 \"storageSku\": {\r\n \"value\": \"Standard_LRS\"\r\n },\r\n \"location\": {\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"value\": \"bezstorageparam0007\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operationStatuses/08585203679787757582?api-version=2021-04-01" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "2354c62f-fe20-4208-a334-82b324fefb71" + ], + "x-ms-correlation-request-id": [ + "2354c62f-fe20-4208-a334-82b324fefb71" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184827Z:2354c62f-fe20-4208-a334-82b324fefb71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:27 GMT" + ], + "Content-Length": [ + "730" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2023-04-11T18:48:27.3567535Z\",\r\n \"duration\": \"PT0.0007535S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "e4d93ec2-c58c-4778-bd5f-0d57837771e1" + ], + "x-ms-correlation-request-id": [ + "e4d93ec2-c58c-4778-bd5f-0d57837771e1" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:e4d93ec2-c58c-4778-bd5f-0d57837771e1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "c3e773ea-d95f-4e3c-bf77-d3bbf3e23c0d" + ], + "x-ms-correlation-request-id": [ + "c3e773ea-d95f-4e3c-bf77-d3bbf3e23c0d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:c3e773ea-d95f-4e3c-bf77-d3bbf3e23c0d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "938dece3-e02d-4674-b1b1-dda5e8f25849" + ], + "x-ms-correlation-request-id": [ + "938dece3-e02d-4674-b1b1-dda5e8f25849" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:938dece3-e02d-4674-b1b1-dda5e8f25849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "b55b8064-81b0-4f73-ba27-1f5c594b847d" + ], + "x-ms-correlation-request-id": [ + "b55b8064-81b0-4f73-ba27-1f5c594b847d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184829Z:b55b8064-81b0-4f73-ba27-1f5c594b847d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "edac3d3c-d58f-4e5c-beb4-2827e642947c" + ], + "x-ms-correlation-request-id": [ + "edac3d3c-d58f-4e5c-beb4-2827e642947c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184829Z:edac3d3c-d58f-4e5c-beb4-2827e642947c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "348bbe43-95d8-4272-ac92-30e9c865fd9d" + ], + "x-ms-correlation-request-id": [ + "348bbe43-95d8-4272-ac92-30e9c865fd9d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184829Z:348bbe43-95d8-4272-ac92-30e9c865fd9d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "ccd6b55f-d8ba-4090-8d7f-ff6a31ef530a" + ], + "x-ms-correlation-request-id": [ + "ccd6b55f-d8ba-4090-8d7f-ff6a31ef530a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:ccd6b55f-d8ba-4090-8d7f-ff6a31ef530a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "7886cfad-11d1-4099-841a-027666210cf7" + ], + "x-ms-correlation-request-id": [ + "7886cfad-11d1-4099-841a-027666210cf7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:7886cfad-11d1-4099-841a-027666210cf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "2df53ecf-c955-41f2-9eb5-2a20c8c6cadd" + ], + "x-ms-correlation-request-id": [ + "2df53ecf-c955-41f2-9eb5-2a20c8c6cadd" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:2df53ecf-c955-41f2-9eb5-2a20c8c6cadd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "275a5784-7e3f-48ba-bddb-30086b335260" + ], + "x-ms-correlation-request-id": [ + "275a5784-7e3f-48ba-bddb-30086b335260" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184831Z:275a5784-7e3f-48ba-bddb-30086b335260" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "18a0e81e-0457-4d7b-9f22-2dad81debf22" + ], + "x-ms-correlation-request-id": [ + "18a0e81e-0457-4d7b-9f22-2dad81debf22" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184831Z:18a0e81e-0457-4d7b-9f22-2dad81debf22" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-request-id": [ + "1f80500c-ff9e-4f26-886f-957474fb6b50" + ], + "x-ms-correlation-request-id": [ + "1f80500c-ff9e-4f26-886f-957474fb6b50" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:1f80500c-ff9e-4f26-886f-957474fb6b50" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-request-id": [ + "09a01da4-e49b-4da2-b0a2-ca5663d75a21" + ], + "x-ms-correlation-request-id": [ + "09a01da4-e49b-4da2-b0a2-ca5663d75a21" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:09a01da4-e49b-4da2-b0a2-ca5663d75a21" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": []\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-request-id": [ + "c138731e-5ffa-42e5-b374-02178ee8b828" + ], + "x-ms-correlation-request-id": [ + "c138731e-5ffa-42e5-b374-02178ee8b828" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:c138731e-5ffa-42e5-b374-02178ee8b828" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-request-id": [ + "4bfe18dc-eea5-48ab-b27f-3043ce05004f" + ], + "x-ms-correlation-request-id": [ + "4bfe18dc-eea5-48ab-b27f-3043ce05004f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:4bfe18dc-eea5-48ab-b27f-3043ce05004f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "75de6119-d1cc-4a79-8129-5a13179a295d" + ], + "x-ms-correlation-request-id": [ + "75de6119-d1cc-4a79-8129-5a13179a295d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:75de6119-d1cc-4a79-8129-5a13179a295d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "5f638be9-8a73-4c4d-b8b0-bc9d2a644808" + ], + "x-ms-correlation-request-id": [ + "5f638be9-8a73-4c4d-b8b0-bc9d2a644808" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:5f638be9-8a73-4c4d-b8b0-bc9d2a644808" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-request-id": [ + "779ffb2a-29bd-4688-a7cb-78f53f1f123c" + ], + "x-ms-correlation-request-id": [ + "779ffb2a-29bd-4688-a7cb-78f53f1f123c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184834Z:779ffb2a-29bd-4688-a7cb-78f53f1f123c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-request-id": [ + "b1233ccc-8246-4b2b-8727-9b6d083595d4" + ], + "x-ms-correlation-request-id": [ + "b1233ccc-8246-4b2b-8727-9b6d083595d4" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184834Z:b1233ccc-8246-4b2b-8727-9b6d083595d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-request-id": [ + "14f35340-ab4f-42b3-bdd4-f945d0b80090" + ], + "x-ms-correlation-request-id": [ + "14f35340-ab4f-42b3-bdd4-f945d0b80090" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184834Z:14f35340-ab4f-42b3-bdd4-f945d0b80090" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-request-id": [ + "2ef81ded-132b-4ce8-871f-d9f87eedbed4" + ], + "x-ms-correlation-request-id": [ + "2ef81ded-132b-4ce8-871f-d9f87eedbed4" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:2ef81ded-132b-4ce8-871f-d9f87eedbed4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-request-id": [ + "99a17fdc-99f6-433b-84d2-9243ef4c4c92" + ], + "x-ms-correlation-request-id": [ + "99a17fdc-99f6-433b-84d2-9243ef4c4c92" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:99a17fdc-99f6-433b-84d2-9243ef4c4c92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-request-id": [ + "a48f5bd2-1345-4e08-be66-329b232f5bde" + ], + "x-ms-correlation-request-id": [ + "a48f5bd2-1345-4e08-be66-329b232f5bde" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:a48f5bd2-1345-4e08-be66-329b232f5bde" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-request-id": [ + "b295281a-d92f-461f-a919-cd23bb8995ea" + ], + "x-ms-correlation-request-id": [ + "b295281a-d92f-461f-a919-cd23bb8995ea" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184836Z:b295281a-d92f-461f-a919-cd23bb8995ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-request-id": [ + "c2a086ef-6847-4d02-b9e0-422db4787ef9" + ], + "x-ms-correlation-request-id": [ + "c2a086ef-6847-4d02-b9e0-422db4787ef9" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184836Z:c2a086ef-6847-4d02-b9e0-422db4787ef9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-request-id": [ + "591dbcd8-933b-45d3-a33b-83bab02e9734" + ], + "x-ms-correlation-request-id": [ + "591dbcd8-933b-45d3-a33b-83bab02e9734" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184837Z:591dbcd8-933b-45d3-a33b-83bab02e9734" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-request-id": [ + "55f36724-b134-4104-87e2-06b2298f8345" + ], + "x-ms-correlation-request-id": [ + "55f36724-b134-4104-87e2-06b2298f8345" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184837Z:55f36724-b134-4104-87e2-06b2298f8345" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-request-id": [ + "cd9fe126-61a7-4682-8762-7c8fffdccaf0" + ], + "x-ms-correlation-request-id": [ + "cd9fe126-61a7-4682-8762-7c8fffdccaf0" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184837Z:cd9fe126-61a7-4682-8762-7c8fffdccaf0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-request-id": [ + "b4060fa1-d467-430d-ab90-7245034cbd05" + ], + "x-ms-correlation-request-id": [ + "b4060fa1-d467-430d-ab90-7245034cbd05" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:b4060fa1-d467-430d-ab90-7245034cbd05" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-request-id": [ + "878d312d-b7c8-474f-908f-55b5722192bc" + ], + "x-ms-correlation-request-id": [ + "878d312d-b7c8-474f-908f-55b5722192bc" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:878d312d-b7c8-474f-908f-55b5722192bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-request-id": [ + "168e3280-07a3-4202-a38e-9cfc13ccb669" + ], + "x-ms-correlation-request-id": [ + "168e3280-07a3-4202-a38e-9cfc13ccb669" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:168e3280-07a3-4202-a38e-9cfc13ccb669" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-request-id": [ + "ba8d2583-4d23-4ef4-8bcc-e70fcc8b45a3" + ], + "x-ms-correlation-request-id": [ + "ba8d2583-4d23-4ef4-8bcc-e70fcc8b45a3" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:ba8d2583-4d23-4ef4-8bcc-e70fcc8b45a3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-request-id": [ + "6e445aea-77b0-47a5-a85a-c9e2f60b80ba" + ], + "x-ms-correlation-request-id": [ + "6e445aea-77b0-47a5-a85a-c9e2f60b80ba" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:6e445aea-77b0-47a5-a85a-c9e2f60b80ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-request-id": [ + "6a5186df-8268-43a2-a530-ea92556ff55a" + ], + "x-ms-correlation-request-id": [ + "6a5186df-8268-43a2-a530-ea92556ff55a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:6a5186df-8268-43a2-a530-ea92556ff55a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-request-id": [ + "a08156d1-2f2b-49c4-8860-12f1c85df2f2" + ], + "x-ms-correlation-request-id": [ + "a08156d1-2f2b-49c4-8860-12f1c85df2f2" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184840Z:a08156d1-2f2b-49c4-8860-12f1c85df2f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-request-id": [ + "84986f49-4b4f-42a4-b96d-c68734fb1a84" + ], + "x-ms-correlation-request-id": [ + "84986f49-4b4f-42a4-b96d-c68734fb1a84" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184840Z:84986f49-4b4f-42a4-b96d-c68734fb1a84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-request-id": [ + "bbc0a04d-c275-4544-b3b3-077cb0562b86" + ], + "x-ms-correlation-request-id": [ + "bbc0a04d-c275-4544-b3b3-077cb0562b86" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:bbc0a04d-c275-4544-b3b3-077cb0562b86" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-request-id": [ + "36a8f9ab-149d-490d-9fd5-fa0aa4b7b36a" + ], + "x-ms-correlation-request-id": [ + "36a8f9ab-149d-490d-9fd5-fa0aa4b7b36a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:36a8f9ab-149d-490d-9fd5-fa0aa4b7b36a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-request-id": [ + "e86eb8ba-0416-4a2e-9531-68977d4decd7" + ], + "x-ms-correlation-request-id": [ + "e86eb8ba-0416-4a2e-9531-68977d4decd7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:e86eb8ba-0416-4a2e-9531-68977d4decd7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-request-id": [ + "a860d96a-f81a-4be3-91bf-51287551528f" + ], + "x-ms-correlation-request-id": [ + "a860d96a-f81a-4be3-91bf-51287551528f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:a860d96a-f81a-4be3-91bf-51287551528f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-request-id": [ + "0b405dcc-443d-4bdc-97b6-f7f30e7da52d" + ], + "x-ms-correlation-request-id": [ + "0b405dcc-443d-4bdc-97b6-f7f30e7da52d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:0b405dcc-443d-4bdc-97b6-f7f30e7da52d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-request-id": [ + "e399289b-d73f-425d-b7fb-92c5fc20a7ba" + ], + "x-ms-correlation-request-id": [ + "e399289b-d73f-425d-b7fb-92c5fc20a7ba" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:e399289b-d73f-425d-b7fb-92c5fc20a7ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-request-id": [ + "39ef61b9-50f0-4276-b6ef-af8d17fba4f0" + ], + "x-ms-correlation-request-id": [ + "39ef61b9-50f0-4276-b6ef-af8d17fba4f0" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184843Z:39ef61b9-50f0-4276-b6ef-af8d17fba4f0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-request-id": [ + "5c0648ab-2104-4951-a662-a982c4e0ea65" + ], + "x-ms-correlation-request-id": [ + "5c0648ab-2104-4951-a662-a982c4e0ea65" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184843Z:5c0648ab-2104-4951-a662-a982c4e0ea65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-request-id": [ + "ff38d578-2d89-4076-9dd7-c412333fc78f" + ], + "x-ms-correlation-request-id": [ + "ff38d578-2d89-4076-9dd7-c412333fc78f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184844Z:ff38d578-2d89-4076-9dd7-c412333fc78f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-request-id": [ + "1ee26b8f-0735-496f-b0c6-be3759c842e3" + ], + "x-ms-correlation-request-id": [ + "1ee26b8f-0735-496f-b0c6-be3759c842e3" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184844Z:1ee26b8f-0735-496f-b0c6-be3759c842e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-request-id": [ + "7cecbc41-92df-497d-a85a-a7b254b9a12a" + ], + "x-ms-correlation-request-id": [ + "7cecbc41-92df-497d-a85a-a7b254b9a12a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184845Z:7cecbc41-92df-497d-a85a-a7b254b9a12a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-request-id": [ + "cf848bca-bc58-4717-abc4-5bf7614a315a" + ], + "x-ms-correlation-request-id": [ + "cf848bca-bc58-4717-abc4-5bf7614a315a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184845Z:cf848bca-bc58-4717-abc4-5bf7614a315a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-request-id": [ + "d6861ba3-91d1-4076-a6a2-4fa4f3215517" + ], + "x-ms-correlation-request-id": [ + "d6861ba3-91d1-4076-a6a2-4fa4f3215517" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184845Z:d6861ba3-91d1-4076-a6a2-4fa4f3215517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-request-id": [ + "83019d37-a6a5-4d05-8a23-cbba6f177306" + ], + "x-ms-correlation-request-id": [ + "83019d37-a6a5-4d05-8a23-cbba6f177306" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184846Z:83019d37-a6a5-4d05-8a23-cbba6f177306" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-request-id": [ + "625c3810-0bcc-4626-afae-952c05dcb28f" + ], + "x-ms-correlation-request-id": [ + "625c3810-0bcc-4626-afae-952c05dcb28f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184846Z:625c3810-0bcc-4626-afae-952c05dcb28f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-request-id": [ + "036db78c-db77-4620-87c6-1f95a99813c1" + ], + "x-ms-correlation-request-id": [ + "036db78c-db77-4620-87c6-1f95a99813c1" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:036db78c-db77-4620-87c6-1f95a99813c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-request-id": [ + "53f00b95-3f50-48f3-9c09-876bb6a76887" + ], + "x-ms-correlation-request-id": [ + "53f00b95-3f50-48f3-9c09-876bb6a76887" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:53f00b95-3f50-48f3-9c09-876bb6a76887" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-request-id": [ + "d2fd3a5a-cec7-4b1e-8f83-19206ff27172" + ], + "x-ms-correlation-request-id": [ + "d2fd3a5a-cec7-4b1e-8f83-19206ff27172" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:d2fd3a5a-cec7-4b1e-8f83-19206ff27172" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-request-id": [ + "dfbd7f9b-3219-40e6-bdb0-2ff0b32d61be" + ], + "x-ms-correlation-request-id": [ + "dfbd7f9b-3219-40e6-bdb0-2ff0b32d61be" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184848Z:dfbd7f9b-3219-40e6-bdb0-2ff0b32d61be" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-request-id": [ + "a0dc3562-50e4-42be-a4c3-18a952d65ee7" + ], + "x-ms-correlation-request-id": [ + "a0dc3562-50e4-42be-a4c3-18a952d65ee7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184848Z:a0dc3562-50e4-42be-a4c3-18a952d65ee7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:48 GMT" + ], + "Connection": [ + "close" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d2d8902a-11ea-4b71-a252-9008a373fda6" + ], + "x-ms-correlation-request-id": [ + "d2d8902a-11ea-4b71-a252-9008a373fda6" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184848Z:d2d8902a-11ea-4b71-a252-9008a373fda6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "7cc7d541-b839-45ff-86e4-b63c542bca30" + ], + "x-ms-correlation-request-id": [ + "7cc7d541-b839-45ff-86e4-b63c542bca30" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:7cc7d541-b839-45ff-86e4-b63c542bca30" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "2543b852-ada3-492f-93f0-242d811d8900" + ], + "x-ms-correlation-request-id": [ + "2543b852-ada3-492f-93f0-242d811d8900" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:2543b852-ada3-492f-93f0-242d811d8900" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "6bd0838a-a960-495f-a05c-79bf52200a87" + ], + "x-ms-correlation-request-id": [ + "6bd0838a-a960-495f-a05c-79bf52200a87" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:6bd0838a-a960-495f-a05c-79bf52200a87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "054bed88-52da-4377-a205-5ed525a279b3" + ], + "x-ms-correlation-request-id": [ + "054bed88-52da-4377-a205-5ed525a279b3" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:054bed88-52da-4377-a205-5ed525a279b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "21d58dc8-1427-4185-b969-eca19c132a42" + ], + "x-ms-correlation-request-id": [ + "21d58dc8-1427-4185-b969-eca19c132a42" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:21d58dc8-1427-4185-b969-eca19c132a42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "6b0574be-b2d6-4ec6-80d4-c903468a8f8d" + ], + "x-ms-correlation-request-id": [ + "6b0574be-b2d6-4ec6-80d4-c903468a8f8d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:6b0574be-b2d6-4ec6-80d4-c903468a8f8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "fc5525b6-6306-4ee3-9c5f-95ede0015a6d" + ], + "x-ms-correlation-request-id": [ + "fc5525b6-6306-4ee3-9c5f-95ede0015a6d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184851Z:fc5525b6-6306-4ee3-9c5f-95ede0015a6d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "e63f7526-aefb-4bac-84c1-e3f2b3fb7f91" + ], + "x-ms-correlation-request-id": [ + "e63f7526-aefb-4bac-84c1-e3f2b3fb7f91" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184851Z:e63f7526-aefb-4bac-84c1-e3f2b3fb7f91" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "8abd1bf3-d108-4987-8ae5-ed41257b6ba8" + ], + "x-ms-correlation-request-id": [ + "8abd1bf3-d108-4987-8ae5-ed41257b6ba8" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:8abd1bf3-d108-4987-8ae5-ed41257b6ba8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "679" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4774093Z\",\r\n \"duration\": \"PT4.6096089S\",\r\n \"trackingId\": \"7ff7b273-253f-49d3-b96c-670ebac6da95\",\r\n \"statusCode\": \"Accepted\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/deployments/ps8696/operations?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9kZXBsb3ltZW50cy9wczg2OTYvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "3deaba73-9c57-440b-8fee-a19f8d9f578d" + ], + "x-ms-correlation-request-id": [ + "3deaba73-9c57-440b-8fee-a19f8d9f578d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:3deaba73-9c57-440b-8fee-a19f8d9f578d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "675" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696/operations/97A08F5BF7898885\",\r\n \"operationId\": \"97A08F5BF7898885\",\r\n \"properties\": {\r\n \"provisioningOperation\": \"Create\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2023-04-11T18:48:52.215285Z\",\r\n \"duration\": \"PT24.3474846S\",\r\n \"trackingId\": \"b87bc992-2bb8-41c4-b629-707615be57ca\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"bezstorageparam0007\"\r\n }\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "3d5fcb3a-ad7a-40bc-8498-f18679415f0c" + ], + "x-ms-correlation-request-id": [ + "3d5fcb3a-ad7a-40bc-8498-f18679415f0c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:3d5fcb3a-ad7a-40bc-8498-f18679415f0c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:27 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "0f58d2a2-d1c8-44b0-891a-1c625f31c55c" + ], + "x-ms-correlation-request-id": [ + "0f58d2a2-d1c8-44b0-891a-1c625f31c55c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:0f58d2a2-d1c8-44b0-891a-1c625f31c55c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "e0be6ce6-50fa-454d-80c0-db716f591bee" + ], + "x-ms-correlation-request-id": [ + "e0be6ce6-50fa-454d-80c0-db716f591bee" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184828Z:e0be6ce6-50fa-454d-80c0-db716f591bee" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:28 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "ad2f9f22-9030-440f-900b-9645649597c1" + ], + "x-ms-correlation-request-id": [ + "ad2f9f22-9030-440f-900b-9645649597c1" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184829Z:ad2f9f22-9030-440f-900b-9645649597c1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:28 GMT" + ], + "Connection": [ + "close" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "13c95e71-fde1-405b-bd56-e9c5e8a6dba1" + ], + "x-ms-correlation-request-id": [ + "13c95e71-fde1-405b-bd56-e9c5e8a6dba1" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184829Z:13c95e71-fde1-405b-bd56-e9c5e8a6dba1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "f1886c98-ea0b-410c-8680-493f3d338ed5" + ], + "x-ms-correlation-request-id": [ + "f1886c98-ea0b-410c-8680-493f3d338ed5" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:f1886c98-ea0b-410c-8680-493f3d338ed5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:29 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "4cb1ef3b-1090-4a9a-9805-058fc4f533f7" + ], + "x-ms-correlation-request-id": [ + "4cb1ef3b-1090-4a9a-9805-058fc4f533f7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:4cb1ef3b-1090-4a9a-9805-058fc4f533f7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "f7ef0b06-dbe5-411e-82f8-4e04b45279aa" + ], + "x-ms-correlation-request-id": [ + "f7ef0b06-dbe5-411e-82f8-4e04b45279aa" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184830Z:f7ef0b06-dbe5-411e-82f8-4e04b45279aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "b46318bb-809f-4b58-b910-371dde401e4f" + ], + "x-ms-correlation-request-id": [ + "b46318bb-809f-4b58-b910-371dde401e4f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184831Z:b46318bb-809f-4b58-b910-371dde401e4f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:30 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "6bbec101-75cc-4ae6-bdd4-7cd4ab17d395" + ], + "x-ms-correlation-request-id": [ + "6bbec101-75cc-4ae6-bdd4-7cd4ab17d395" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184831Z:6bbec101-75cc-4ae6-bdd4-7cd4ab17d395" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-request-id": [ + "2012a691-3cb9-4a51-90ec-fcf758ef01f1" + ], + "x-ms-correlation-request-id": [ + "2012a691-3cb9-4a51-90ec-fcf758ef01f1" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184831Z:2012a691-3cb9-4a51-90ec-fcf758ef01f1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:31 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-request-id": [ + "f139a2a2-ebbc-4009-9cc8-710681807889" + ], + "x-ms-correlation-request-id": [ + "f139a2a2-ebbc-4009-9cc8-710681807889" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:f139a2a2-ebbc-4009-9cc8-710681807889" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-request-id": [ + "ec483330-e5a4-40ff-88b1-1dc420f9c005" + ], + "x-ms-correlation-request-id": [ + "ec483330-e5a4-40ff-88b1-1dc420f9c005" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:ec483330-e5a4-40ff-88b1-1dc420f9c005" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:27.8286747Z\",\r\n \"duration\": \"PT0.4726747S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-request-id": [ + "2d2ef8f7-4f8b-4fcd-aa61-c05f0493e8c2" + ], + "x-ms-correlation-request-id": [ + "2d2ef8f7-4f8b-4fcd-aa61-c05f0493e8c2" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184832Z:2d2ef8f7-4f8b-4fcd-aa61-c05f0493e8c2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:32 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "f5eb93ae-f410-4bfb-95fc-1f6155025a06" + ], + "x-ms-correlation-request-id": [ + "f5eb93ae-f410-4bfb-95fc-1f6155025a06" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:f5eb93ae-f410-4bfb-95fc-1f6155025a06" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "f31a01a5-c998-4f37-bb4d-12081c1e5de9" + ], + "x-ms-correlation-request-id": [ + "f31a01a5-c998-4f37-bb4d-12081c1e5de9" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:f31a01a5-c998-4f37-bb4d-12081c1e5de9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-request-id": [ + "d24166b8-3c9c-4d84-99d6-2ef297d32ccc" + ], + "x-ms-correlation-request-id": [ + "d24166b8-3c9c-4d84-99d6-2ef297d32ccc" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184833Z:d24166b8-3c9c-4d84-99d6-2ef297d32ccc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:33 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-request-id": [ + "1d54c231-0587-42c2-a6df-46e07024b847" + ], + "x-ms-correlation-request-id": [ + "1d54c231-0587-42c2-a6df-46e07024b847" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184834Z:1d54c231-0587-42c2-a6df-46e07024b847" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-request-id": [ + "4f9e785b-98b4-4e69-9751-df114912271c" + ], + "x-ms-correlation-request-id": [ + "4f9e785b-98b4-4e69-9751-df114912271c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184834Z:4f9e785b-98b4-4e69-9751-df114912271c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "x-ms-request-id": [ + "993611f0-969a-4df7-ba62-40ecc8360bbb" + ], + "x-ms-correlation-request-id": [ + "993611f0-969a-4df7-ba62-40ecc8360bbb" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:993611f0-969a-4df7-ba62-40ecc8360bbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:34 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-request-id": [ + "d8235eae-390b-4a8e-8dd6-0b89271f300c" + ], + "x-ms-correlation-request-id": [ + "d8235eae-390b-4a8e-8dd6-0b89271f300c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:d8235eae-390b-4a8e-8dd6-0b89271f300c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-request-id": [ + "742fcfb3-699f-4b5d-af64-a8a24c540f5a" + ], + "x-ms-correlation-request-id": [ + "742fcfb3-699f-4b5d-af64-a8a24c540f5a" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184835Z:742fcfb3-699f-4b5d-af64-a8a24c540f5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-request-id": [ + "f7e532ea-e5e9-43bc-9ebe-fd15c980191e" + ], + "x-ms-correlation-request-id": [ + "f7e532ea-e5e9-43bc-9ebe-fd15c980191e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184836Z:f7e532ea-e5e9-43bc-9ebe-fd15c980191e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-request-id": [ + "ba4b7786-17be-4724-be8d-dc22eee1db26" + ], + "x-ms-correlation-request-id": [ + "ba4b7786-17be-4724-be8d-dc22eee1db26" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184836Z:ba4b7786-17be-4724-be8d-dc22eee1db26" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-request-id": [ + "bdad1976-44c8-4159-97bc-d7e47ea21be0" + ], + "x-ms-correlation-request-id": [ + "bdad1976-44c8-4159-97bc-d7e47ea21be0" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184836Z:bdad1976-44c8-4159-97bc-d7e47ea21be0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:36 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-request-id": [ + "d20883fe-523a-424e-b5d0-be31f60aff4c" + ], + "x-ms-correlation-request-id": [ + "d20883fe-523a-424e-b5d0-be31f60aff4c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184837Z:d20883fe-523a-424e-b5d0-be31f60aff4c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-request-id": [ + "c32e0be7-cd60-4531-8da1-b2fe9eda514b" + ], + "x-ms-correlation-request-id": [ + "c32e0be7-cd60-4531-8da1-b2fe9eda514b" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184837Z:c32e0be7-cd60-4531-8da1-b2fe9eda514b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-request-id": [ + "b5647140-8684-4249-a9bc-87fd7a089243" + ], + "x-ms-correlation-request-id": [ + "b5647140-8684-4249-a9bc-87fd7a089243" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:b5647140-8684-4249-a9bc-87fd7a089243" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:37 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "x-ms-request-id": [ + "c41590dc-15f5-4429-8c18-a733d514de84" + ], + "x-ms-correlation-request-id": [ + "c41590dc-15f5-4429-8c18-a733d514de84" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:c41590dc-15f5-4429-8c18-a733d514de84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-request-id": [ + "52073c2d-baf3-4024-b4b6-1a4a1edc61a6" + ], + "x-ms-correlation-request-id": [ + "52073c2d-baf3-4024-b4b6-1a4a1edc61a6" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184838Z:52073c2d-baf3-4024-b4b6-1a4a1edc61a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:38 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-request-id": [ + "f4d87475-33ea-4e30-b88e-16b2a278d385" + ], + "x-ms-correlation-request-id": [ + "f4d87475-33ea-4e30-b88e-16b2a278d385" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:f4d87475-33ea-4e30-b88e-16b2a278d385" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-request-id": [ + "ab450196-0b2b-46df-92ad-9bbd3431765d" + ], + "x-ms-correlation-request-id": [ + "ab450196-0b2b-46df-92ad-9bbd3431765d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:ab450196-0b2b-46df-92ad-9bbd3431765d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-request-id": [ + "375448bb-8024-4276-b9da-fa35c1d46212" + ], + "x-ms-correlation-request-id": [ + "375448bb-8024-4276-b9da-fa35c1d46212" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184839Z:375448bb-8024-4276-b9da-fa35c1d46212" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:39 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-request-id": [ + "f60713f9-5559-4836-8f7f-10f15a625c1c" + ], + "x-ms-correlation-request-id": [ + "f60713f9-5559-4836-8f7f-10f15a625c1c" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184840Z:f60713f9-5559-4836-8f7f-10f15a625c1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-request-id": [ + "cd955401-5785-46be-9f86-90db1da32aa7" + ], + "x-ms-correlation-request-id": [ + "cd955401-5785-46be-9f86-90db1da32aa7" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184840Z:cd955401-5785-46be-9f86-90db1da32aa7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-request-id": [ + "e14f884e-351e-4cf0-9588-21a407933eda" + ], + "x-ms-correlation-request-id": [ + "e14f884e-351e-4cf0-9588-21a407933eda" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184840Z:e14f884e-351e-4cf0-9588-21a407933eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:40 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-request-id": [ + "6ca1b1ad-125a-40a4-97d7-6561b58890ba" + ], + "x-ms-correlation-request-id": [ + "6ca1b1ad-125a-40a4-97d7-6561b58890ba" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:6ca1b1ad-125a-40a4-97d7-6561b58890ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "x-ms-request-id": [ + "415f55d5-c46a-4abd-8215-523ccaff92cd" + ], + "x-ms-correlation-request-id": [ + "415f55d5-c46a-4abd-8215-523ccaff92cd" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:415f55d5-c46a-4abd-8215-523ccaff92cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-request-id": [ + "e0323dee-94a0-4958-a216-c16138749694" + ], + "x-ms-correlation-request-id": [ + "e0323dee-94a0-4958-a216-c16138749694" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184841Z:e0323dee-94a0-4958-a216-c16138749694" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:41 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-request-id": [ + "969916f1-2475-442a-991c-043d5f46a0ba" + ], + "x-ms-correlation-request-id": [ + "969916f1-2475-442a-991c-043d5f46a0ba" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:969916f1-2475-442a-991c-043d5f46a0ba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-request-id": [ + "bf169e93-5e5a-4cd0-baab-9c69d0d1effe" + ], + "x-ms-correlation-request-id": [ + "bf169e93-5e5a-4cd0-baab-9c69d0d1effe" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:bf169e93-5e5a-4cd0-baab-9c69d0d1effe" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-request-id": [ + "ed768238-f6f3-4e62-8c3e-762192c4b918" + ], + "x-ms-correlation-request-id": [ + "ed768238-f6f3-4e62-8c3e-762192c4b918" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184842Z:ed768238-f6f3-4e62-8c3e-762192c4b918" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:42 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-request-id": [ + "bbe3156d-d844-4d32-a8f5-5bbcdc2a1378" + ], + "x-ms-correlation-request-id": [ + "bbe3156d-d844-4d32-a8f5-5bbcdc2a1378" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184843Z:bbe3156d-d844-4d32-a8f5-5bbcdc2a1378" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-request-id": [ + "9552ba97-5ddb-4ab1-8792-b1cd12c55198" + ], + "x-ms-correlation-request-id": [ + "9552ba97-5ddb-4ab1-8792-b1cd12c55198" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184843Z:9552ba97-5ddb-4ab1-8792-b1cd12c55198" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:43 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-request-id": [ + "6ae5a21a-4016-4d62-9452-126bbac9d61d" + ], + "x-ms-correlation-request-id": [ + "6ae5a21a-4016-4d62-9452-126bbac9d61d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184844Z:6ae5a21a-4016-4d62-9452-126bbac9d61d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-request-id": [ + "565cd543-b604-44d8-9440-811d354c77f2" + ], + "x-ms-correlation-request-id": [ + "565cd543-b604-44d8-9440-811d354c77f2" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184844Z:565cd543-b604-44d8-9440-811d354c77f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:44 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "x-ms-request-id": [ + "100b5fd3-aa4a-4b34-baec-b23291034e40" + ], + "x-ms-correlation-request-id": [ + "100b5fd3-aa4a-4b34-baec-b23291034e40" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184845Z:100b5fd3-aa4a-4b34-baec-b23291034e40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-request-id": [ + "1d653029-8e03-4eb2-8d4f-003b9f26d616" + ], + "x-ms-correlation-request-id": [ + "1d653029-8e03-4eb2-8d4f-003b9f26d616" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184845Z:1d653029-8e03-4eb2-8d4f-003b9f26d616" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:45 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-request-id": [ + "28866237-9bc3-478a-bc2d-976ac32111bc" + ], + "x-ms-correlation-request-id": [ + "28866237-9bc3-478a-bc2d-976ac32111bc" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184846Z:28866237-9bc3-478a-bc2d-976ac32111bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-request-id": [ + "90648449-3da7-4348-8600-f333c64d4f1e" + ], + "x-ms-correlation-request-id": [ + "90648449-3da7-4348-8600-f333c64d4f1e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184846Z:90648449-3da7-4348-8600-f333c64d4f1e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-request-id": [ + "202d2f50-1329-4f94-b279-e543d86c43a5" + ], + "x-ms-correlation-request-id": [ + "202d2f50-1329-4f94-b279-e543d86c43a5" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184846Z:202d2f50-1329-4f94-b279-e543d86c43a5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:46 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-request-id": [ + "8d8f1948-9ed2-4f1f-ab33-9fe22defeb8d" + ], + "x-ms-correlation-request-id": [ + "8d8f1948-9ed2-4f1f-ab33-9fe22defeb8d" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:8d8f1948-9ed2-4f1f-ab33-9fe22defeb8d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-request-id": [ + "ce4fed3f-9bab-4f99-b0c5-a19998cd4739" + ], + "x-ms-correlation-request-id": [ + "ce4fed3f-9bab-4f99-b0c5-a19998cd4739" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:ce4fed3f-9bab-4f99-b0c5-a19998cd4739" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "22e9c82e-8dcf-4d3a-b18b-1901431dc562" + ], + "x-ms-correlation-request-id": [ + "22e9c82e-8dcf-4d3a-b18b-1901431dc562" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184847Z:22e9c82e-8dcf-4d3a-b18b-1901431dc562" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:47 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-request-id": [ + "28bd9497-a568-49c4-939b-55371601e1e6" + ], + "x-ms-correlation-request-id": [ + "28bd9497-a568-49c4-939b-55371601e1e6" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184848Z:28bd9497-a568-49c4-939b-55371601e1e6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "f37394ff-d210-4e3a-b29b-59aed79a811e" + ], + "x-ms-correlation-request-id": [ + "f37394ff-d210-4e3a-b29b-59aed79a811e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184848Z:f37394ff-d210-4e3a-b29b-59aed79a811e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:48 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "1e0ca34b-eea8-47ab-a84c-dea8e7b98022" + ], + "x-ms-correlation-request-id": [ + "1e0ca34b-eea8-47ab-a84c-dea8e7b98022" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:1e0ca34b-eea8-47ab-a84c-dea8e7b98022" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-request-id": [ + "4f23f589-f496-44df-aa05-d841470a8d48" + ], + "x-ms-correlation-request-id": [ + "4f23f589-f496-44df-aa05-d841470a8d48" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:4f23f589-f496-44df-aa05-d841470a8d48" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-request-id": [ + "7fc9d584-d27c-491a-9f2a-19140054cda6" + ], + "x-ms-correlation-request-id": [ + "7fc9d584-d27c-491a-9f2a-19140054cda6" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184849Z:7fc9d584-d27c-491a-9f2a-19140054cda6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-request-id": [ + "01ada9d8-f48b-4306-a754-658af9fada18" + ], + "x-ms-correlation-request-id": [ + "01ada9d8-f48b-4306-a754-658af9fada18" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:01ada9d8-f48b-4306-a754-658af9fada18" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:49 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "2181194d-15e2-489b-b176-86659d884132" + ], + "x-ms-correlation-request-id": [ + "2181194d-15e2-489b-b176-86659d884132" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:2181194d-15e2-489b-b176-86659d884132" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Connection": [ + "close" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "347ac56a-3d63-4638-b7a9-6b1d3ce949cd" + ], + "x-ms-correlation-request-id": [ + "347ac56a-3d63-4638-b7a9-6b1d3ce949cd" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184850Z:347ac56a-3d63-4638-b7a9-6b1d3ce949cd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9adf2141-5d52-452f-bd1a-9f8d5b555930" + ], + "x-ms-correlation-request-id": [ + "9adf2141-5d52-452f-bd1a-9f8d5b555930" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184851Z:9adf2141-5d52-452f-bd1a-9f8d5b555930" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:50 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-request-id": [ + "06e04094-678c-4ad3-85c3-d1ef6a9dc1d4" + ], + "x-ms-correlation-request-id": [ + "06e04094-678c-4ad3-85c3-d1ef6a9dc1d4" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184851Z:06e04094-678c-4ad3-85c3-d1ef6a9dc1d4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-request-id": [ + "1abfaebe-f9b6-4660-acaf-586f88521240" + ], + "x-ms-correlation-request-id": [ + "1abfaebe-f9b6-4660-acaf-586f88521240" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184851Z:1abfaebe-f9b6-4660-acaf-586f88521240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "aaac14fd-d829-45dc-878f-f85fb8b78cbb" + ], + "x-ms-correlation-request-id": [ + "aaac14fd-d829-45dc-878f-f85fb8b78cbb" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:aaac14fd-d829-45dc-878f-f85fb8b78cbb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "729" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Running\",\r\n \"timestamp\": \"2023-04-11T18:48:32.4467464Z\",\r\n \"duration\": \"PT5.0907464S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d03d8b1b-14a0-4f94-8712-56d8deac4566" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "c989ed8d-7df5-4e7f-b61a-4a6f4c031f08" + ], + "x-ms-correlation-request-id": [ + "c989ed8d-7df5-4e7f-b61a-4a6f4c031f08" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:c989ed8d-7df5-4e7f-b61a-4a6f4c031f08" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:52 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1089" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2023-04-11T18:48:52.3447282Z\",\r\n \"duration\": \"PT24.9887282S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\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/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318/providers/Microsoft.Resources/deployments/ps8696?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOC9wcm92aWRlcnMvTWljcm9zb2Z0LlJlc291cmNlcy9kZXBsb3ltZW50cy9wczg2OTY/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ff9ceb79-8a00-4740-913a-664a21a66e47" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "861bfe41-2228-4306-b43e-20e9d9e1f36f" + ], + "x-ms-correlation-request-id": [ + "861bfe41-2228-4306-b43e-20e9d9e1f36f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184852Z:861bfe41-2228-4306-b43e-20e9d9e1f36f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:51 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "1089" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Resources/deployments/ps8696\",\r\n \"name\": \"ps8696\",\r\n \"type\": \"Microsoft.Resources/deployments\",\r\n \"properties\": {\r\n \"templateHash\": \"7497673863834157045\",\r\n \"parameters\": {\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus2\"\r\n },\r\n \"name\": {\r\n \"type\": \"String\",\r\n \"value\": \"bezstorageparam0007\"\r\n },\r\n \"storageSku\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_LRS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2023-04-11T18:48:52.3447282Z\",\r\n \"duration\": \"PT24.9887282S\",\r\n \"correlationId\": \"2354c62f-fe20-4208-a334-82b324fefb71\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus2\"\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/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\"\r\n }\r\n },\r\n \"outputResources\": [\r\n {\r\n \"id\": \"/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourceGroups/ps4318/providers/Microsoft.Storage/storageAccounts/bezstorageparam0007\"\r\n }\r\n ]\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/resourcegroups/ps4318?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL3Jlc291cmNlZ3JvdXBzL3BzNDMxOD9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "DELETE", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "47d8e597-7572-4283-a886-1cd1ba29f101" + ], + "x-ms-correlation-request-id": [ + "47d8e597-7572-4283-a886-1cd1ba29f101" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184854Z:47d8e597-7572-4283-a886-1cd1ba29f101" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:48:54 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "8e2b9695-38c7-42e3-8d9f-f4779e699c52" + ], + "x-ms-correlation-request-id": [ + "8e2b9695-38c7-42e3-8d9f-f4779e699c52" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184909Z:8e2b9695-38c7-42e3-8d9f-f4779e699c52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:49:09 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "f01b2246-c7bc-47bb-b2ef-5ea3eb151d0e" + ], + "x-ms-correlation-request-id": [ + "f01b2246-c7bc-47bb-b2ef-5ea3eb151d0e" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184924Z:f01b2246-c7bc-47bb-b2ef-5ea3eb151d0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:49:24 GMT" + ], + "Connection": [ + "close" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "465528a3-b974-4b39-bfab-f796a8ddfcb6" + ], + "x-ms-correlation-request-id": [ + "465528a3-b974-4b39-bfab-f796a8ddfcb6" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184940Z:465528a3-b974-4b39-bfab-f796a8ddfcb6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:49:40 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01" + ], + "Retry-After": [ + "0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "d8bb0674-b950-4957-98dc-86e5e5fdec70" + ], + "x-ms-correlation-request-id": [ + "d8bb0674-b950-4957-98dc-86e5e5fdec70" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T184955Z:d8bb0674-b950-4957-98dc-86e5e5fdec70" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:49:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "0b47d5d4-7fb9-488a-8056-4c3d95e4808f" + ], + "x-ms-correlation-request-id": [ + "0b47d5d4-7fb9-488a-8056-4c3d95e4808f" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T185010Z:0b47d5d4-7fb9-488a-8056-4c3d95e4808f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:50:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/a1bfa635-f2bf-42f1-86b5-848c674fc321/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QUzQzMTgtV0VTVFVTMiIsImpvYkxvY2F0aW9uIjoid2VzdHVzMiJ9?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYTFiZmE2MzUtZjJiZi00MmYxLTg2YjUtODQ4YzY3NGZjMzIxL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVXpRek1UZ3RWMFZUVkZWVE1pSXNJbXB2WWt4dlkyRjBhVzl1SWpvaWQyVnpkSFZ6TWlKOT9hcGktdmVyc2lvbj0yMDIxLTA0LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b1040b3a-71d1-42c0-9aa1-f2c36eb0a795" + ], + "User-Agent": [ + "FxVersion/4.700.22.55902", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.22621", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/3.17.3.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "b55b6345-c9bd-44a6-8104-16e78b35b935" + ], + "x-ms-correlation-request-id": [ + "b55b6345-c9bd-44a6-8104-16e78b35b935" + ], + "x-ms-routing-request-id": [ + "SOUTHCENTRALUS:20230411T185011Z:b55b6345-c9bd-44a6-8104-16e78b35b935" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 11 Apr 2023 18:50:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ], + "Retry-After": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewDeploymentFromBicepFileAndBicepparamFile": [ + "ps4318", + "ps8696" + ] + }, + "Variables": { + "SubscriptionId": "a1bfa635-f2bf-42f1-86b5-848c674fc321" + } +} \ No newline at end of file diff --git a/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs b/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs index 692f19fa71dd..8e6f9f12af59 100644 --- a/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs +++ b/src/Resources/Resources.Test/UnitTests/Utilities/TestBicepUtility.cs @@ -14,5 +14,13 @@ public void TestIsBicepFile() Assert.True(BicepUtility.IsBicepFile("test.bicep")); Assert.False(BicepUtility.IsBicepFile("test.json")); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestIsBicepparamFile() + { + Assert.True(BicepUtility.IsBicepparamFile("test.bicepparam")); + Assert.False(BicepUtility.IsBicepparamFile("test.json")); + } } } From 76bfff5b04c7445ecb2a7c9c6fef6b6f88c70bde Mon Sep 17 00:00:00 2001 From: Muhammad Usman Date: Fri, 14 Apr 2023 15:03:05 -0500 Subject: [PATCH 3/3] updated changelog --- src/Resources/Resources/ChangeLog.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Resources/Resources/ChangeLog.md b/src/Resources/Resources/ChangeLog.md index 9097e37da6b1..1034fd743c03 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 parameters file using Bicep parameters syntax ## Version 6.6.0 * Fixed an issue when running the `New-AzManagementGroup` command where it tried to cast an async operation as a Management Group. [#21000]