From 2aaa7dadaa1a2eb914e3a733e86373a546353d26 Mon Sep 17 00:00:00 2001 From: Shai Blum Date: Wed, 6 Feb 2019 19:03:20 +0200 Subject: [PATCH 01/11] Help files for Get/Set-AzSecurityThreatProtection --- .../help/Get-AzSecurityThreatProtection.md | 80 +++++++++ .../help/Set-AzSecurityThreatProtection.md | 152 ++++++++++++++++++ 2 files changed, 232 insertions(+) create mode 100644 src/Security/Security/help/Get-AzSecurityThreatProtection.md create mode 100644 src/Security/Security/help/Set-AzSecurityThreatProtection.md diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md new file mode 100644 index 000000000000..f3f2d4fcc8bb --- /dev/null +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -0,0 +1,80 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml +Module Name: Az.Security +online version: +schema: 2.0.0 +--- + +# Get-AzSecurityThreatProtection + +## SYNOPSIS +Gets the threat protection policy for a Microsoft Storage account. + +## SYNTAX + +``` +Get-AzSecurityThreatProtection -ResourceId [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzSecurityThreatProtection** cmdlet gets the threat protetion Microsoft Storage account. +To use this cmdlet, specify the *ResourceId* parameter. + + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> Get-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" +``` + +This command gets the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +``` + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +ID of the security resource that you want to invoke the command on. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Security.Models.Locations.PSSecurityLocation + +## NOTES + +## RELATED LINKS diff --git a/src/Security/Security/help/Set-AzSecurityThreatProtection.md b/src/Security/Security/help/Set-AzSecurityThreatProtection.md new file mode 100644 index 000000000000..9f50c1c77d82 --- /dev/null +++ b/src/Security/Security/help/Set-AzSecurityThreatProtection.md @@ -0,0 +1,152 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml +Module Name: Az.Security +online version: +schema: 2.0.0 +--- + +# Set-AzSecurityThreatProtection + +## SYNOPSIS +Sets the threat protection policy for a Microsoft Storage account. + +## SYNTAX + +### PolicyOn +``` +Set-AzSecurityThreatProtection -ResourceId [-Enable] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +### PolicyOff +``` +Set-AzSecurityThreatProtection -ResourceId [-Disable] [-DefaultProfile ] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +The **Set-AzSecurityThreatProtection** cmdlet sets a threat protetion for Microsoft Storage account. +To use this cmdlet, specify the *ResourceId* and *-Enable* OR *-Disable* parameters to activate or deactivate the policy. + + +## EXAMPLES + +### Example 1: Enable Advanced Threat Protection policy: +```powershell +PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Enable +``` + +This command enables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +### Example 2: Disable Advanced Threat Protection policy: +```powershell +PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Disable +``` + +This command disables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Disable +Disables Threat Protection policy. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: PolicyOff +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Enable +Enables Threat Protection policy. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: PolicyOn +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +ID of the security resource that you want to invoke the command on. + +```yaml +Type: System.String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Security.Models.ThreatProtection.PSThreatProtection + +## NOTES + +## RELATED LINKS From 2a8763d4b1a9018fae568201d79d1899e3f16729 Mon Sep 17 00:00:00 2001 From: Shai Blum Date: Tue, 12 Feb 2019 23:41:19 +0200 Subject: [PATCH 02/11] Get-Set ATP storage + Test+Help --- .../SecurityAdvancedThreatProtectionTests.cs | 41 + .../SecurityAdvancedThreatProtectionTests.ps1 | 65 + .../ScenarioTests/TestController.cs | 32 +- .../Security.Test/Security.Test.csproj | 3 +- .../GetResourceId.json | 8477 +++++++++++++++++ src/Security/Security/Az.Security.psd1 | 4 +- .../GetThreatProtectionPolicy.cs | 34 + .../SetThreatProtectionPolicy .cs | 59 + .../Security/Common/ParameterHelpMessages.cs | 7 + .../Security/Common/ParameterSetNames.cs | 2 + .../ThreatProtection/PSThreatProtection.cs | 23 + src/Security/Security/Security.csproj | 2 +- src/Security/Security/help/Az.Security.md | 8 +- .../help/Get-AzSecurityThreatProtection.md | 4 +- .../help/Set-AzSecurityThreatProtection.md | 2 +- 15 files changed, 8746 insertions(+), 17 deletions(-) create mode 100644 src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.cs create mode 100644 src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 create mode 100644 src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json create mode 100644 src/Security/Security/Cmdlets/AdvancedThreatProtection/GetThreatProtectionPolicy.cs create mode 100644 src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs create mode 100644 src/Security/Security/Models/ThreatProtection/PSThreatProtection.cs diff --git a/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.cs b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.cs new file mode 100644 index 000000000000..aa03f4721396 --- /dev/null +++ b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.cs @@ -0,0 +1,41 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.ScenarioTest; +using Microsoft.Azure.ServiceManagement.Common.Models; +using Microsoft.WindowsAzure.Commands.ScenarioTest; +using Xunit; + +namespace Microsoft.Azure.Commands.Security.Test.ScenarioTests +{ + public class SecurityAdvancedThreatProtectionTests + { + private readonly XunitTracingInterceptor _logger; + + public SecurityAdvancedThreatProtectionTests(Xunit.Abstractions.ITestOutputHelper output) + { + _logger = new XunitTracingInterceptor(output); + XunitTracingInterceptor.AddToContext(_logger); + TestExecutionHelpers.SetUpSessionAndProfile(); + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void GetResourceId() + { + TestController.NewInstance.RunPowerShellTest(_logger, "Test-AzSecurityThreatProtection-ResourceId"); + } + + } +} diff --git a/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 new file mode 100644 index 000000000000..334603a88a91 --- /dev/null +++ b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 @@ -0,0 +1,65 @@ +# ---------------------------------------------------------------------------------- +# +# Copyright Microsoft Corporation +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ---------------------------------------------------------------------------------- + +<# +.SYNOPSIS +Get a security contact by resource ID +#> +function Test-AzSecurityThreatProtection-ResourceId +{ + # Setup + $testSuffix = "pstest" + $testParams = Get-AdvancedThreatProtectionTestEnvironmentParameters $testSuffix + $resourceId = "/subscriptions/" + $testParams.subscriptionId + "/resourceGroups/" + $testParams.rgName + "/providers/Microsoft.Storage/storageAccounts/" + $testParams.accountName + Create-TestEnvironmentWithParams $testParams + + #Enable + $policy = Set-AzSecurityThreatProtection -ResourceId $resourceId -Enable + $fetchedPolicy = Get-AzSecurityThreatProtection -ResourceId $resourceId + Assert-AreEqual $policy.IsEnabled $True + Assert-AreEqual $True $fetchedPolicy.IsEnabled + + #Disable + $policy = Set-AzSecurityThreatProtection -ResourceId $resourceId -Disable + $fetchedPolicy = Get-AzSecurityThreatProtection -ResourceId $resourceId + Assert-AreEqual $policy.IsEnabled $False + Assert-AreEqual $False $fetchedPolicy.IsEnabled +} + +<# +.SYNOPSIS +Gets the values of the parameters used at the tests +#> +function Get-AdvancedThreatProtectionTestEnvironmentParameters ($testSuffix) +{ + return @{ subscriptionId = (Get-AzContext).Subscription.Id; + rgName = "storage-atp-cmdlet-test-rg" +$testSuffix; + accountName = "storage" +$testSuffix; + storageSku = "Standard_GRS"; + location = "West Central US" + } +} + + <# +.SYNOPSIS +Creates the basic test environment needed to perform the threat protection tests - resource group and storage account +#> +function Create-TestEnvironmentWithParams ($testParams) +{ + # Create a new resource group. + New-AzResourceGroup -Name $testParams.rgName -Location $testParams.location + + # Create the storage account. + $storageAccount = New-AzStorageAccount -ResourceGroupName $testParams.rgName -AccountName $testParams.accountName -Location $testParams.location -SkuName $testParams.storageSku +} \ No newline at end of file diff --git a/src/Security/Security.Test/ScenarioTests/TestController.cs b/src/Security/Security.Test/ScenarioTests/TestController.cs index 1a23641a66c6..d00da7d29186 100644 --- a/src/Security/Security.Test/ScenarioTests/TestController.cs +++ b/src/Security/Security.Test/ScenarioTests/TestController.cs @@ -12,17 +12,19 @@ // limitations under the License. // ---------------------------------------------------------------------------------- -using System; -using System.Collections.Generic; -using System.Diagnostics; -using System.IO; -using System.Linq; using Microsoft.Azure.Commands.Common.Authentication; +using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.Security; +using Microsoft.Azure.Management.Storage; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.WindowsAzure.Commands.ScenarioTest; using Microsoft.WindowsAzure.Commands.Test.Utilities.Common; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.IO; +using System.Linq; namespace Microsoft.Azure.Commands.Security.Test.ScenarioTests { @@ -30,8 +32,6 @@ public class TestController : RMTestBase { private readonly EnvironmentSetupHelper _helper; - public SecurityCenterClient SecurityCenterClient { get; private set; } - public static TestController NewInstance => new TestController(); protected TestController() @@ -63,7 +63,9 @@ public void RunPowerShellTest(ServiceManagement.Common.Models.XunitTracingInterc _helper.RMProfileModule, _helper.GetRMModulePath(@"AzureRM.Security.psd1"), "ScenarioTests\\Common.ps1", - "ScenarioTests\\" + callingClassName + ".ps1"); + "ScenarioTests\\" + callingClassName + ".ps1", + _helper.GetRMModulePath(@"AzureRM.Resources"), + _helper.GetRMModulePath(@"Az.Storage.psd1")); _helper.RunPowerShellTest(scripts); } @@ -71,13 +73,23 @@ public void RunPowerShellTest(ServiceManagement.Common.Models.XunitTracingInterc protected void SetupManagementClients(MockContext context) { - SecurityCenterClient = GetSecurityCenterClient(context); - _helper.SetupManagementClients(SecurityCenterClient); + var resourcesClient = GetResourcesClient(context); + var securityCenterClient = GetSecurityCenterClient(context); + var storageClient = GetStorageManagementClient(context); + _helper.SetupManagementClients(securityCenterClient, resourcesClient, storageClient); } private static SecurityCenterClient GetSecurityCenterClient(MockContext context) { return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); } + private static ResourceManagementClient GetResourcesClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } + private static StorageManagementClient GetStorageManagementClient(MockContext context) + { + return context.GetServiceClient(TestEnvironmentFactory.GetTestEnvironment()); + } } } diff --git a/src/Security/Security.Test/Security.Test.csproj b/src/Security/Security.Test/Security.Test.csproj index b929fe7d6828..57e2481b8327 100644 --- a/src/Security/Security.Test/Security.Test.csproj +++ b/src/Security/Security.Test/Security.Test.csproj @@ -11,7 +11,8 @@ - + + \ No newline at end of file diff --git a/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json b/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json new file mode 100644 index 000000000000..43d894a16d20 --- /dev/null +++ b/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json @@ -0,0 +1,8477 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/storage-atp-cmdlet-test-rgpstest?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "HEAD", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac846d79-b6d8-4aba-b006-0562cb9c8090" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-failure-cause": [ + "gateway" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-request-id": [ + "bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + ], + "x-ms-correlation-request-id": [ + "bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212051Z:bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:20:50 GMT" + ], + "Content-Length": [ + "124" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "", + "StatusCode": 404 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/storage-atp-cmdlet-test-rgpstest?api-version=2018-05-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "12a5a89d-827e-479a-97d0-5636563d2e5d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "37" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-request-id": [ + "ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + ], + "x-ms-correlation-request-id": [ + "ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212054Z:ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:20:54 GMT" + ], + "Content-Length": [ + "224" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest\",\r\n \"name\": \"storage-atp-cmdlet-test-rgpstest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0abcd9b1-5657-44cf-8a40-3c971e6e12f2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "79" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3042c451-86e2-466d-8875-262a9e0ce288" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "a1fb56c9-93d6-4f30-8724-f3407c15cb9f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212055Z:a1fb56c9-93d6-4f30-8724-f3407c15cb9f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:20:54 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0ed7c924-8e9b-4c2d-ba0d-df375cf5655f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "105" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "1f3cb8ab-f01a-4fdb-88e7-e377282efc8c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "ffa9bc07-9350-417f-9877-d586c01d8675" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212058Z:ffa9bc07-9350-417f-9877-d586c01d8675" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:20:57 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b75f27d7-0834-452f-9f7d-a5263279d595" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "20b0a437-39fd-4512-aa27-dd9d3e346a16" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212116Z:20b0a437-39fd-4512-aa27-dd9d3e346a16" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:15 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "69d29abd-bfb0-4324-be3a-32e07ee26ef3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "39eb69d4-c7d5-4887-81e0-327c5ebd2388" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212119Z:39eb69d4-c7d5-4887-81e0-327c5ebd2388" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:18 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "940bff72-4466-4c42-9270-a8af09268f90" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "103335c0-0243-4afb-9110-1fc0c33c415f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212122Z:103335c0-0243-4afb-9110-1fc0c33c415f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:22 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "479c0d96-cd9d-4cbb-9c85-8228fe9665cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "51e292a6-bcaa-4dc5-8d40-c44a463ff5ac" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212125Z:51e292a6-bcaa-4dc5-8d40-c44a463ff5ac" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:25 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "213c5cdb-58ba-4eec-8515-7cf29299d29d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "e750dce6-511e-4b14-8b73-550282869d4e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212129Z:e750dce6-511e-4b14-8b73-550282869d4e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:28 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "333a3d28-164d-4cae-bac1-29288572149e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "792a2eea-f036-48b0-b10b-01fdbddedd96" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212132Z:792a2eea-f036-48b0-b10b-01fdbddedd96" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b26a655b-7aee-4567-b158-50c76ff37b40" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "be668923-9677-4fd7-8540-109fb07d782a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212135Z:be668923-9677-4fd7-8540-109fb07d782a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:34 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "afac25d8-de60-494a-a410-2dab6735c5df" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "5fff76a9-0015-48f3-a4a2-a9cefedd8bc9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212138Z:5fff76a9-0015-48f3-a4a2-a9cefedd8bc9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:37 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3a07d26f-727f-4548-a5c8-5cadf1a814f5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "b308e3f0-2b2f-448e-ba74-319b35bf02c5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212142Z:b308e3f0-2b2f-448e-ba74-319b35bf02c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:41 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ea88be01-e94f-45c1-a08e-b10de09e8229" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "16a317f5-8585-4872-8ae8-f1b5ba6deae5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212145Z:16a317f5-8585-4872-8ae8-f1b5ba6deae5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:45 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "96bea3d1-fe9b-4406-baf8-bcc7e838360e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "56cf1bf8-2aa5-4f26-9743-be45b6478630" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212148Z:56cf1bf8-2aa5-4f26-9743-be45b6478630" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "934d2d8b-756e-456f-b872-de7f873c9f37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "f2224b91-e775-48c5-be58-92eafff4b72c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212151Z:f2224b91-e775-48c5-be58-92eafff4b72c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:51 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "da9a7c98-bfa4-4986-8e23-bccd27632139" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "1650506b-0898-4053-b8e5-64be1d4531c2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212155Z:1650506b-0898-4053-b8e5-64be1d4531c2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:54 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0db736de-674f-4628-9089-b09919cac7bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "528cc838-e45c-4f2e-9f0b-550a04689be2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212158Z:528cc838-e45c-4f2e-9f0b-550a04689be2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:21:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e8a169ce-9e68-4ac3-ba69-9b5f038e5680" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "c49e8604-cd7b-40eb-8994-a40452e38cc0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212201Z:c49e8604-cd7b-40eb-8994-a40452e38cc0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:01 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ebaaac36-9990-4325-ba3f-766d4c806d2d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "b609a923-b298-4a5f-886a-cca96e55c73d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212205Z:b609a923-b298-4a5f-886a-cca96e55c73d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:04 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "fd9388b4-25c5-48aa-8032-72ce3621e234" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "99d5c545-d356-4734-9085-1a1db356a0af" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212208Z:99d5c545-d356-4734-9085-1a1db356a0af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:07 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "20d3ab1b-f294-4615-a8a3-9d5db84b7e02" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "957e4015-b50c-42a0-af24-ee43e228eef3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212211Z:957e4015-b50c-42a0-af24-ee43e228eef3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:10 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c842f98f-e660-4db5-bc1b-ed6b5dbafe2f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "dd1edeb1-1121-4c19-8bb8-1e69abec4f55" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212214Z:dd1edeb1-1121-4c19-8bb8-1e69abec4f55" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:14 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "40ab9ac9-672b-4373-9229-b1cb769d8bd3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "6eda7dea-7c3f-4e20-8e5e-b1abf235e661" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212218Z:6eda7dea-7c3f-4e20-8e5e-b1abf235e661" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:17 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "57cc84c3-2957-431b-bb9a-e4119b4199cc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-correlation-request-id": [ + "07e389a2-b58e-43bb-b4a9-c3ea9c24e572" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212221Z:07e389a2-b58e-43bb-b4a9-c3ea9c24e572" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:20 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "226fb27a-5f46-427f-af7b-095bc2d58de7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-correlation-request-id": [ + "8cd88a01-96a6-4531-ab5e-6c6d742c3f7a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212224Z:8cd88a01-96a6-4531-ab5e-6c6d742c3f7a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:23 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c0324044-e8ec-4d2d-91ab-53aa0cdaf5fc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-correlation-request-id": [ + "84b159d9-9a77-4bb0-99e2-a2883bc1f64f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212227Z:84b159d9-9a77-4bb0-99e2-a2883bc1f64f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:27 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "d6366b9f-9f2b-4311-a2b4-24fdb77d4c6c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-correlation-request-id": [ + "f5960bdf-ac27-4bee-9a73-4e9db4d65ed9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212230Z:f5960bdf-ac27-4bee-9a73-4e9db4d65ed9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:30 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "439331ce-a095-48a4-9159-c389b4d8c259" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11974" + ], + "x-ms-correlation-request-id": [ + "f78a425a-c553-4915-b6d4-f12f124abdd5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212234Z:f78a425a-c553-4915-b6d4-f12f124abdd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:33 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "04c27f31-65e4-4171-964a-4ee44a81a092" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11973" + ], + "x-ms-correlation-request-id": [ + "8b7d9582-83cd-4b46-861f-af982fb32fb8" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212237Z:8b7d9582-83cd-4b46-861f-af982fb32fb8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:37 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "12f56d92-8db5-48f4-99e8-29bce4979964" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11972" + ], + "x-ms-correlation-request-id": [ + "3ae68db1-59ef-422a-b98a-521b91ec92d6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212240Z:3ae68db1-59ef-422a-b98a-521b91ec92d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:40 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9ed48ed0-bc84-460c-96e9-6d7e475bca62" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11971" + ], + "x-ms-correlation-request-id": [ + "e75d4b0a-e149-4910-8aad-e1e16c8d16df" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212243Z:e75d4b0a-e149-4910-8aad-e1e16c8d16df" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:43 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "20a48312-181d-41fe-8cd1-c9e55f6db0d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11970" + ], + "x-ms-correlation-request-id": [ + "756a7bd2-d23f-4d29-98b4-af7c1a8ab69b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212247Z:756a7bd2-d23f-4d29-98b4-af7c1a8ab69b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:46 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "cb7aaa00-6acb-4539-a743-d99b12014ce0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], + "x-ms-correlation-request-id": [ + "f032305a-d462-4aec-b25a-18369e9f90cf" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212250Z:f032305a-d462-4aec-b25a-18369e9f90cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:49 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "626d857d-e407-4fa4-82cc-2955f81eaf38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11968" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "2e096e65-94d9-4e94-8a2e-4499849e941a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212253Z:2e096e65-94d9-4e94-8a2e-4499849e941a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:52 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "db4b4665-ab08-43db-87d5-9c54daa28f7b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], + "x-ms-correlation-request-id": [ + "b4bca686-d567-4591-8496-bd929aba7378" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212257Z:b4bca686-d567-4591-8496-bd929aba7378" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:56 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "bf4b3bd2-b1f2-4f37-ac2c-5eee8c1f02e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11966" + ], + "x-ms-correlation-request-id": [ + "677c343c-7199-4e81-952c-0af99d4eda5c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212300Z:677c343c-7199-4e81-952c-0af99d4eda5c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:22:59 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "40057d11-a716-439a-b1c1-e310c8ce0eff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11965" + ], + "x-ms-correlation-request-id": [ + "4eb9aa7d-bd4e-4b8e-9f6a-d19c6d7e7240" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212303Z:4eb9aa7d-bd4e-4b8e-9f6a-d19c6d7e7240" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:03 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c858259b-576a-4e97-98d6-84ab80a9c1d7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11964" + ], + "x-ms-correlation-request-id": [ + "56a0a39e-c5d7-4a29-9d20-b4b24799db9b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212306Z:56a0a39e-c5d7-4a29-9d20-b4b24799db9b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:06 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "52b0ae14-3e68-4e19-b835-0f1e5de6bc84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11963" + ], + "x-ms-correlation-request-id": [ + "e0128f96-6a6c-48ed-a2e0-9a272ed3a6d2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212310Z:e0128f96-6a6c-48ed-a2e0-9a272ed3a6d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:09 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a8c42308-7202-4e65-99fc-53b017dff6d6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11962" + ], + "x-ms-correlation-request-id": [ + "da432455-cfcc-4c77-9e34-c1725c5b340c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212313Z:da432455-cfcc-4c77-9e34-c1725c5b340c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:12 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "36a0c785-4d87-4cb5-a1e3-d909d09148da" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11961" + ], + "x-ms-correlation-request-id": [ + "98c3f337-4f02-4fdb-8db0-6a30158b819e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212316Z:98c3f337-4f02-4fdb-8db0-6a30158b819e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:16 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3e9d95b7-ad5d-495b-8aeb-f419de3413c0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11960" + ], + "x-ms-correlation-request-id": [ + "4829554d-de3a-4077-9c74-55c85876438f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212319Z:4829554d-de3a-4077-9c74-55c85876438f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:19 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "cd36ab44-361b-4eda-89e0-03fbbf19b0ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11959" + ], + "x-ms-correlation-request-id": [ + "62bec2f5-e68c-4f36-9abb-4501df13580d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212323Z:62bec2f5-e68c-4f36-9abb-4501df13580d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:22 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "527371ce-2091-424e-b4e4-c4d8981a98f9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11958" + ], + "x-ms-correlation-request-id": [ + "25838895-ea9f-4742-bd22-37d3c4bc56fc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212326Z:25838895-ea9f-4742-bd22-37d3c4bc56fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:25 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "6562faaa-5448-4dfb-83d1-db318049e849" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11957" + ], + "x-ms-correlation-request-id": [ + "6f22a198-bc75-417c-b1ef-1e0dddef745e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212329Z:6f22a198-bc75-417c-b1ef-1e0dddef745e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:29 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "475cae95-d0f6-406f-be8d-aac058b4712d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11956" + ], + "x-ms-correlation-request-id": [ + "e7be2370-90db-4ff5-aff1-28ddd5666a7b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212332Z:e7be2370-90db-4ff5-aff1-28ddd5666a7b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:32 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "aeb32977-0725-4bd1-a615-6904e5504a1c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11955" + ], + "x-ms-correlation-request-id": [ + "193fb664-1382-496e-be1a-efd2288a0d06" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212336Z:193fb664-1382-496e-be1a-efd2288a0d06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:35 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a33c7e8e-61de-412a-bc38-aa1c03fc3cfd" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11954" + ], + "x-ms-correlation-request-id": [ + "26a6e98c-2025-498c-91dd-5b0827b38926" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212339Z:26a6e98c-2025-498c-91dd-5b0827b38926" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:38 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0cd930f1-8b9c-4fd2-a775-b4007c3958ca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11953" + ], + "x-ms-correlation-request-id": [ + "9f628bce-b237-4d35-8b97-b5a3f6bade28" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212342Z:9f628bce-b237-4d35-8b97-b5a3f6bade28" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:42 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "6d3b303d-dc19-4ea8-afb1-0b00ced52eda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11952" + ], + "x-ms-correlation-request-id": [ + "9a51e53e-340e-4153-b955-adfa9a391a18" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212345Z:9a51e53e-340e-4153-b955-adfa9a391a18" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:45 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "2fbf80b7-1a62-418c-b9a2-ba786117a971" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11951" + ], + "x-ms-correlation-request-id": [ + "27b43399-c1f9-409a-a55a-6234ca1d91d0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212348Z:27b43399-c1f9-409a-a55a-6234ca1d91d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "1ba06b2e-423e-4c5e-b582-76f4b461862b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11950" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "cad512bd-c12e-4354-9116-6809acf909c4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212352Z:cad512bd-c12e-4354-9116-6809acf909c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:51 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9227b6eb-6388-423c-8ee4-5e1529eb46d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11949" + ], + "x-ms-correlation-request-id": [ + "2d89747b-ca1b-4f85-b631-2ee8ab33e188" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212355Z:2d89747b-ca1b-4f85-b631-2ee8ab33e188" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:55 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f6362313-a5b8-48df-ab42-121ea37e5a3c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11948" + ], + "x-ms-correlation-request-id": [ + "ffe0bef3-fa9b-45b3-a7b6-8923569fd1c5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212359Z:ffe0bef3-fa9b-45b3-a7b6-8923569fd1c5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:23:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9946134a-25ed-4e9c-8001-ec1c24f793ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11947" + ], + "x-ms-correlation-request-id": [ + "c142e1a8-6b03-4ac5-90cc-665eee5f3a11" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212402Z:c142e1a8-6b03-4ac5-90cc-665eee5f3a11" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:02 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "814e5012-5180-4822-9c59-b3c97f62e5fa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11946" + ], + "x-ms-correlation-request-id": [ + "0b47c518-5901-490c-a83d-4abf5b86189f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212405Z:0b47c518-5901-490c-a83d-4abf5b86189f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:05 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "816f2d17-4c1b-4562-8923-d35a1cc1b97b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11945" + ], + "x-ms-correlation-request-id": [ + "5bd7c959-ff0c-4369-8665-d291e8c32ffb" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212408Z:5bd7c959-ff0c-4369-8665-d291e8c32ffb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:08 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0ab0b8db-2b58-4bcd-b39c-39f6ddc5691f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11944" + ], + "x-ms-correlation-request-id": [ + "409e18c3-f109-4627-91e8-46f3ae379e77" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212411Z:409e18c3-f109-4627-91e8-46f3ae379e77" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:11 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "246edeae-bfa4-4acb-993e-b7d290862c72" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11943" + ], + "x-ms-correlation-request-id": [ + "29c12a08-4c48-4de3-b73f-780b241abd2d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212415Z:29c12a08-4c48-4de3-b73f-780b241abd2d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:14 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ce19076b-ea12-4556-8155-08943e330ecb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11942" + ], + "x-ms-correlation-request-id": [ + "aeb749d9-5e91-4f94-a5ef-b186d8f4d1ba" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212418Z:aeb749d9-5e91-4f94-a5ef-b186d8f4d1ba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:17 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "edab016d-e062-4e76-8777-d627181db395" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11941" + ], + "x-ms-correlation-request-id": [ + "6c11225f-65a1-4b55-9339-6ef3fc10808a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212421Z:6c11225f-65a1-4b55-9339-6ef3fc10808a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:21 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a56a1fb0-cad1-4174-bf75-eecc36ebedb9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11940" + ], + "x-ms-correlation-request-id": [ + "ec60ffcb-f871-48e2-8d3d-dcb735f72632" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212424Z:ec60ffcb-f871-48e2-8d3d-dcb735f72632" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:24 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "bb4cbdcb-6fb9-4bea-b4b9-8dd40182bf29" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11939" + ], + "x-ms-correlation-request-id": [ + "1f02f24c-d8a8-4df8-92c2-ad73262cc7fc" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212428Z:1f02f24c-d8a8-4df8-92c2-ad73262cc7fc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:27 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b2900afe-4984-469d-83d6-4e5bac49f6eb" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11938" + ], + "x-ms-correlation-request-id": [ + "f9bb4395-5d72-4744-bf06-f41d318ec22f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212431Z:f9bb4395-5d72-4744-bf06-f41d318ec22f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ff23b520-ccdf-4354-a0a2-106403d196b6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11937" + ], + "x-ms-correlation-request-id": [ + "dee946a7-c572-45eb-b72f-2fffd8cc99d0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212434Z:dee946a7-c572-45eb-b72f-2fffd8cc99d0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:34 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f373ca50-75e3-46c6-91cb-27774612202d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11936" + ], + "x-ms-correlation-request-id": [ + "fbc522dd-6484-43cf-a80d-a526b19f6970" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212437Z:fbc522dd-6484-43cf-a80d-a526b19f6970" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:37 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0f13a627-1e7e-48d2-93b5-6a444784d154" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11935" + ], + "x-ms-correlation-request-id": [ + "a5eb7abe-3d11-4e42-9aa5-2326c5a6c153" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212441Z:a5eb7abe-3d11-4e42-9aa5-2326c5a6c153" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:40 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "31cb1a8f-a300-42db-a0ff-d13ca60087aa" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11934" + ], + "x-ms-correlation-request-id": [ + "9a940471-8138-4e6d-b86e-9e3b793f1736" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212444Z:9a940471-8138-4e6d-b86e-9e3b793f1736" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "85b65e96-5689-4d7a-9f6d-3c03f94e8ec4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11933" + ], + "x-ms-correlation-request-id": [ + "9e9df6fc-ab25-4781-b14c-40b580d44024" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212447Z:9e9df6fc-ab25-4781-b14c-40b580d44024" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:47 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "71f37634-321e-49c8-9d99-8ae6192537ec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11932" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "57c8fe52-a680-4c30-ae7e-cd6e8346590e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212450Z:57c8fe52-a680-4c30-ae7e-cd6e8346590e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "da0b0074-1bc4-44ad-9630-0d166584b776" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11931" + ], + "x-ms-correlation-request-id": [ + "7449e51c-8c31-4892-a437-cbac3133c2e5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212454Z:7449e51c-8c31-4892-a437-cbac3133c2e5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:53 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b458162c-05a7-4bc2-82bb-95a47ac5cd04" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11930" + ], + "x-ms-correlation-request-id": [ + "7a07a485-9de4-423d-9f09-4c72c84ade61" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212457Z:7a07a485-9de4-423d-9f09-4c72c84ade61" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:24:56 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c74963b8-3424-46b5-b700-790594e06270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11929" + ], + "x-ms-correlation-request-id": [ + "8edc8a7c-0387-482d-bd39-282b145acc8a" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212500Z:8edc8a7c-0387-482d-bd39-282b145acc8a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:00 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "42d7377b-578d-4ba8-a193-a5ed582f0b03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11928" + ], + "x-ms-correlation-request-id": [ + "cd6c44e8-44b4-496d-a78b-9ca16b3b377d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212504Z:cd6c44e8-44b4-496d-a78b-9ca16b3b377d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:03 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "24bf67df-e30d-43c4-9fec-652621ffb0a4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11927" + ], + "x-ms-correlation-request-id": [ + "c08a2fa8-c7dc-49cd-ab63-d8324d3eecd5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212507Z:c08a2fa8-c7dc-49cd-ab63-d8324d3eecd5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:06 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "73425b97-4ce8-4a7f-8fd8-a538aff9bf52" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11926" + ], + "x-ms-correlation-request-id": [ + "6990af77-41c3-4c50-b262-c7da9648d583" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212510Z:6990af77-41c3-4c50-b262-c7da9648d583" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:10 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "af3056fd-b10b-4924-a55b-f0b35cbc59de" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11925" + ], + "x-ms-correlation-request-id": [ + "f26af8e3-5b44-49b8-a0d8-27856bad6624" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212513Z:f26af8e3-5b44-49b8-a0d8-27856bad6624" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:13 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9648d66a-aabd-4ed2-8fd2-e44dc01e3e57" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11924" + ], + "x-ms-correlation-request-id": [ + "81a471e6-66a2-42b8-be42-0dc9e2fd435b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212517Z:81a471e6-66a2-42b8-be42-0dc9e2fd435b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:16 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "817ee28d-083c-4b7b-a926-995f9af14801" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11923" + ], + "x-ms-correlation-request-id": [ + "7309798b-127c-499d-a2b8-8a4e67e769f5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212520Z:7309798b-127c-499d-a2b8-8a4e67e769f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:19 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "3c639cc5-8454-4308-b9bf-249066186e12" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11922" + ], + "x-ms-correlation-request-id": [ + "c7e526e2-3ff3-4e40-843f-64e0c5c7a07f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212523Z:c7e526e2-3ff3-4e40-843f-64e0c5c7a07f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:23 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7376f59c-e80d-4610-9bbe-b42a8073a0bc" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11921" + ], + "x-ms-correlation-request-id": [ + "0aa17776-c50a-4281-a49c-51087751a699" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212526Z:0aa17776-c50a-4281-a49c-51087751a699" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:26 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "4a67f2a9-344a-4dd6-bc46-e7cae06a8d96" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11920" + ], + "x-ms-correlation-request-id": [ + "75c8d5b8-c4e1-44ed-95aa-148030b22772" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212529Z:75c8d5b8-c4e1-44ed-95aa-148030b22772" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:29 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "0663cede-4709-4cb1-a9e6-6e42f4da4ad9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11919" + ], + "x-ms-correlation-request-id": [ + "fca22b5f-2110-41d9-9cf4-7df7eb4a57f5" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212533Z:fca22b5f-2110-41d9-9cf4-7df7eb4a57f5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:32 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "1792c718-f411-43f6-ac4b-0d99eb286bff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11918" + ], + "x-ms-correlation-request-id": [ + "97ddf2e6-4705-4542-9d69-844a2504996f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212536Z:97ddf2e6-4705-4542-9d69-844a2504996f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:35 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "adf61b72-77ee-42d2-8c6c-94d5b0dcb2e9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11917" + ], + "x-ms-correlation-request-id": [ + "4c15d51f-39c8-4a06-a831-6e76d1e53bd3" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212539Z:4c15d51f-39c8-4a06-a831-6e76d1e53bd3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:39 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "d8368096-c43c-4c5b-8390-d2bf308c4dda" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11916" + ], + "x-ms-correlation-request-id": [ + "a2cf03dc-cbae-484f-91f8-f08fb6b50115" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212542Z:a2cf03dc-cbae-484f-91f8-f08fb6b50115" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:42 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c9c112fd-6933-4779-bcc1-6e9eb40bd3bf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11915" + ], + "x-ms-correlation-request-id": [ + "695af1f3-1bfc-4096-9bc3-09bdefa8132d" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212546Z:695af1f3-1bfc-4096-9bc3-09bdefa8132d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:45 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b9de772f-4487-4b77-863a-63d2d5e3c9ab" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11914" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "36daebae-aaa0-461b-9498-7e44eced2870" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212549Z:36daebae-aaa0-461b-9498-7e44eced2870" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:48 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "95363305-7645-41a0-9bdf-6c8c06ef3240" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11913" + ], + "x-ms-correlation-request-id": [ + "c06397ca-ba6d-4127-a269-1b1cb3cd0302" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212552Z:c06397ca-ba6d-4127-a269-1b1cb3cd0302" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:52 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "4692ba59-e22c-4756-b8b9-abadd2fb35e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11912" + ], + "x-ms-correlation-request-id": [ + "cdcd4170-7f60-4303-b41d-a56385778033" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212556Z:cdcd4170-7f60-4303-b41d-a56385778033" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:55 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b26554b8-11f4-4193-a369-8ac47efe581b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11911" + ], + "x-ms-correlation-request-id": [ + "a9201e45-5ab5-4c8b-b23d-16a51a2edd63" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212559Z:a9201e45-5ab5-4c8b-b23d-16a51a2edd63" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:25:58 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "fea24d37-f161-4b8f-b391-934e9c1dd996" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11910" + ], + "x-ms-correlation-request-id": [ + "c627efe8-5798-412a-b38d-9391b9d642e9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212602Z:c627efe8-5798-412a-b38d-9391b9d642e9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:01 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "757ca4dd-bc95-4e4b-a6ec-ae673de2c0d8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11909" + ], + "x-ms-correlation-request-id": [ + "7994fad4-7cbf-4fe6-b9c4-3eb2e9e09d09" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212605Z:7994fad4-7cbf-4fe6-b9c4-3eb2e9e09d09" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:05 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "15371a60-be96-47dc-9dc8-06536dae8796" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11908" + ], + "x-ms-correlation-request-id": [ + "2d2a935a-2607-4f29-9469-52a01dbb2341" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212609Z:2d2a935a-2607-4f29-9469-52a01dbb2341" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:08 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "28b36beb-e4ed-4db7-b40f-318eff312b0e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11907" + ], + "x-ms-correlation-request-id": [ + "7860041f-de28-4fa0-ac92-b65f0d8a075f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212612Z:7860041f-de28-4fa0-ac92-b65f0d8a075f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:11 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "8427fa6a-9c02-4517-9c38-3e374ed943a7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11906" + ], + "x-ms-correlation-request-id": [ + "1efa525c-ef90-4a1f-b913-fb54d6b1fd06" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212615Z:1efa525c-ef90-4a1f-b913-fb54d6b1fd06" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:15 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7a6d9de0-71a8-4d85-a668-308bc2785540" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11905" + ], + "x-ms-correlation-request-id": [ + "87c49057-8376-476f-8e3e-951ec10af57b" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212618Z:87c49057-8376-476f-8e3e-951ec10af57b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:18 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "1a8c1e29-16d9-4af3-bfd1-5252902eb0d3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11904" + ], + "x-ms-correlation-request-id": [ + "ed5dc1f7-735e-4155-89f7-2a254197426c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212622Z:ed5dc1f7-735e-4155-89f7-2a254197426c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:21 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "b0f678bc-a462-43ed-878c-d0454e7493e4" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11903" + ], + "x-ms-correlation-request-id": [ + "8921560b-31aa-4fbf-bc29-161906d99113" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212625Z:8921560b-31aa-4fbf-bc29-161906d99113" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:25 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "a223247a-e1f1-4dca-9a21-a34ec5f15290" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11902" + ], + "x-ms-correlation-request-id": [ + "ab70fa14-c96e-4211-8539-bfcb22b5805c" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212628Z:ab70fa14-c96e-4211-8539-bfcb22b5805c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:28 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ca2e0312-ca09-415e-9ac0-03faa5ff5719" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11901" + ], + "x-ms-correlation-request-id": [ + "09bb34e9-c450-496a-901b-430f77ed96b4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212631Z:09bb34e9-c450-496a-901b-430f77ed96b4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "2b83fb4a-9770-4f72-bbc6-c6dba1e8d2ad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11900" + ], + "x-ms-correlation-request-id": [ + "7c9d8534-14a8-4a85-b9c1-3601bdf11866" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212635Z:7c9d8534-14a8-4a85-b9c1-3601bdf11866" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:34 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ef630190-8e4e-477a-b9fc-72e16c3fa517" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11899" + ], + "x-ms-correlation-request-id": [ + "d587904b-f5e5-4a2f-a452-68942e143127" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212638Z:d587904b-f5e5-4a2f-a452-68942e143127" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:37 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f9bbe234-2ee7-4e6a-8c17-1aaab5195ca1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11898" + ], + "x-ms-correlation-request-id": [ + "41beb96a-e051-409a-b5c5-5bd8e7ff46d6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212641Z:41beb96a-e051-409a-b5c5-5bd8e7ff46d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:40 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c3aa6ea1-afe4-40af-a6f4-fee30d80a105" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11897" + ], + "x-ms-correlation-request-id": [ + "6f5d6579-07f7-4c37-b962-7eae3df42936" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212644Z:6f5d6579-07f7-4c37-b962-7eae3df42936" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:44 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "49547cbf-3fc8-4546-893c-975fcba2517e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11896" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "6e9eceb5-be45-45bf-b864-932e89f55131" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212647Z:6e9eceb5-be45-45bf-b864-932e89f55131" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:47 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "11966083-9447-44d6-a460-2b815dd7149e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11895" + ], + "x-ms-correlation-request-id": [ + "26ba250d-8aec-436f-b877-36ad1c331977" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212651Z:26ba250d-8aec-436f-b877-36ad1c331977" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "30c0543d-6e1c-4dd3-84dd-c0f2f7e95894" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11894" + ], + "x-ms-correlation-request-id": [ + "731610f9-cd13-4bb0-9e50-e5d2ac4dbf3e" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212654Z:731610f9-cd13-4bb0-9e50-e5d2ac4dbf3e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:53 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "ee617ade-9d82-4acc-b54a-a2a16e520b38" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11893" + ], + "x-ms-correlation-request-id": [ + "37502f4d-1ebd-4fce-8867-c10fdd7f4175" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212658Z:37502f4d-1ebd-4fce-8867-c10fdd7f4175" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:26:57 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "fca77c54-fb71-4f20-91a8-46e8494cfde6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11892" + ], + "x-ms-correlation-request-id": [ + "4d8b4a31-214f-4f0f-85d1-48da5cfcc4ee" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212701Z:4d8b4a31-214f-4f0f-85d1-48da5cfcc4ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:00 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "c652fc80-7ebb-4672-b5e3-121cec610759" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11891" + ], + "x-ms-correlation-request-id": [ + "59b3f649-bc75-40f9-981f-c65bbfadb2d6" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212704Z:59b3f649-bc75-40f9-981f-c65bbfadb2d6" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:04 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "f62dff7d-00e9-41f1-b4cd-10c90ac4636c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11890" + ], + "x-ms-correlation-request-id": [ + "8b32620c-c99b-4fa3-81ee-63643c13edf0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212707Z:8b32620c-c99b-4fa3-81ee-63643c13edf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:07 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "8669a2c2-f6f3-4d30-8aea-6888f32f76e3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11889" + ], + "x-ms-correlation-request-id": [ + "066aaae9-6a25-4963-97b9-8ce3321ce425" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212710Z:066aaae9-6a25-4963-97b9-8ce3321ce425" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:10 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9be52925-2258-4601-8c09-af7e943bcbad" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11888" + ], + "x-ms-correlation-request-id": [ + "30522df9-af62-4310-875c-e2e9684ba661" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212714Z:30522df9-af62-4310-875c-e2e9684ba661" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:13 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "6ca8e0e9-857c-47dd-9d89-b31ae6c250c6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11887" + ], + "x-ms-correlation-request-id": [ + "1ed44aa2-09cc-41aa-926a-bb312e32c282" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212717Z:1ed44aa2-09cc-41aa-926a-bb312e32c282" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:17 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "43478826-802a-4c9d-9999-101ada9389e2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11886" + ], + "x-ms-correlation-request-id": [ + "1289b30d-982a-4a02-81d7-97274c7adaaa" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212720Z:1289b30d-982a-4a02-81d7-97274c7adaaa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:20 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e2154210-8efb-4bbe-aa50-56a6ad1ff291" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11885" + ], + "x-ms-correlation-request-id": [ + "c65ed053-efd1-463c-8149-e8b86df32551" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212723Z:c65ed053-efd1-463c-8149-e8b86df32551" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:23 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "8cb0465e-ab38-4237-aeae-c521eae48699" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11884" + ], + "x-ms-correlation-request-id": [ + "2943018d-7493-4fb0-9a7a-72ecf35feb0f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212727Z:2943018d-7493-4fb0-9a7a-72ecf35feb0f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:26 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "fe9c0de3-56be-4d63-ace5-260b75f7439e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11883" + ], + "x-ms-correlation-request-id": [ + "bb71fde2-3d33-4dbd-9f0e-3b21031ba406" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212730Z:bb71fde2-3d33-4dbd-9f0e-3b21031ba406" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:29 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "1ec88f9f-de9c-4606-8588-29daa0083c92" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11882" + ], + "x-ms-correlation-request-id": [ + "5d4fde4e-a038-42bd-ac6c-576f65ba8dd9" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212733Z:5d4fde4e-a038-42bd-ac6c-576f65ba8dd9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:33 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "170e052c-a8fc-4d98-94a1-a519e1d3821b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11881" + ], + "x-ms-correlation-request-id": [ + "0403231a-d754-4096-9b16-c94d6e29a764" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212736Z:0403231a-d754-4096-9b16-c94d6e29a764" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:36 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "9370fb02-8879-4e69-a57a-22e02e31c3b0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11880" + ], + "x-ms-correlation-request-id": [ + "004c45f2-7100-4833-8ac9-2090abd22626" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212740Z:004c45f2-7100-4833-8ac9-2090abd22626" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:39 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "46c7e440-c040-4257-8cba-e9703ebb2c42" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11879" + ], + "x-ms-correlation-request-id": [ + "318732f8-a6a2-4bb2-8084-4c0babfceb39" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212743Z:318732f8-a6a2-4bb2-8084-4c0babfceb39" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:42 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "7f9a4aae-1ef7-4160-b02a-2c6dd1581daf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11878" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-correlation-request-id": [ + "75b72dad-b252-4d64-9f8b-804c31e355a2" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212746Z:75b72dad-b252-4d64-9f8b-804c31e355a2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:46 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "e8019104-55d6-44fd-865d-8eb58bfd1e45" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11877" + ], + "x-ms-correlation-request-id": [ + "a164b2aa-aec9-48e8-ab55-ad488799c8ad" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212750Z:a164b2aa-aec9-48e8-ab55-ad488799c8ad" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:50 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "5715fe31-7eb3-4b3c-808a-857240111885" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11876" + ], + "x-ms-correlation-request-id": [ + "9702c24d-c1b6-4f92-924f-21b8de9015c4" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212753Z:9702c24d-c1b6-4f92-924f-21b8de9015c4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:53 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + ], + "Retry-After": [ + "3" + ], + "x-ms-request-id": [ + "cf086166-1b85-4b60-a30c-08c2b5efaa87" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11875" + ], + "x-ms-correlation-request-id": [ + "a5cb8552-286b-4b99-a733-7015b584abb0" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212756Z:a5cb8552-286b-4b99-a733-7015b584abb0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:56 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "460f2c27-2089-4d70-98c4-4d0f85534e37" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11874" + ], + "x-ms-correlation-request-id": [ + "64dd4922-564f-4c2e-a853-a87c12afad71" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212759Z:64dd4922-564f-4c2e-a853-a87c12afad71" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:59 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest\",\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-12T21:20:57.9839169Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest?api-version=2018-07-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "83e586e8-9fcc-4d18-a985-9ba53d0dd647" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e858ec58-4079-49b7-805d-5a8b405036a6" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11873" + ], + "x-ms-correlation-request-id": [ + "3cd840e5-f2f0-4a76-b403-9f1318ecf931" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212800Z:3cd840e5-f2f0-4a76-b403-9f1318ecf931" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:27:59 GMT" + ], + "Content-Length": [ + "1136" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest\",\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-12T21:20:57.9839169Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b3c7b6ba-a47e-478a-a0d9-a9157193463a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Security.SecurityCenterClient/0.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "51" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "249" + ], + "x-ms-request-id": [ + "c74ddc9f-fd6a-46df-a938-c00ffa395582" + ], + "x-ms-correlation-request-id": [ + "c74ddc9f-fd6a-46df-a938-c00ffa395582" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212802Z:c74ddc9f-fd6a-46df-a938-c00ffa395582" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:28:02 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "594c09a5-e305-42ed-9cc9-6af4fdedb805" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Security.SecurityCenterClient/0.11.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "52" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "248" + ], + "x-ms-request-id": [ + "9ee655de-e90a-47e1-9e5f-328424e1ff9f" + ], + "x-ms-correlation-request-id": [ + "9ee655de-e90a-47e1-9e5f-328424e1ff9f" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212802Z:9ee655de-e90a-47e1-9e5f-328424e1ff9f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:28:02 GMT" + ], + "Content-Length": [ + "347" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1f83c3e-e8c1-4139-ac20-4dd9347e2c95" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Security.SecurityCenterClient/0.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "749" + ], + "x-ms-request-id": [ + "e0f69527-58f2-4490-8c52-cdcba4b75270" + ], + "x-ms-correlation-request-id": [ + "e0f69527-58f2-4490-8c52-cdcba4b75270" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212802Z:e0f69527-58f2-4490-8c52-cdcba4b75270" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:28:02 GMT" + ], + "Content-Length": [ + "346" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0f3fd74e-e41d-408b-91c1-27dd4b264a80" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.26919.02", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.17763.", + "Microsoft.Azure.Management.Security.SecurityCenterClient/0.11.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Server": [ + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "748" + ], + "x-ms-request-id": [ + "ad942f74-b958-4046-99a6-05cc1a815d09" + ], + "x-ms-correlation-request-id": [ + "ad942f74-b958-4046-99a6-05cc1a815d09" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20190212T212803Z:ad942f74-b958-4046-99a6-05cc1a815d09" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 12 Feb 2019 21:28:02 GMT" + ], + "Content-Length": [ + "347" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" + } +} \ No newline at end of file diff --git a/src/Security/Security/Az.Security.psd1 b/src/Security/Security/Az.Security.psd1 index 836bf7c8f502..7b122551d339 100644 --- a/src/Security/Security/Az.Security.psd1 +++ b/src/Security/Security/Az.Security.psd1 @@ -85,7 +85,9 @@ CmdletsToExport = 'Get-AzSecurityAlert', 'Set-AzSecurityAlert', 'Get-AzSecurityContact', 'Set-AzSecurityContact', 'Remove-AzSecurityContact', 'Get-AzSecurityTask', 'Get-AzSecurityWorkspaceSetting', 'Set-AzSecurityWorkspaceSetting', - 'Remove-AzSecurityWorkspaceSetting' + 'Remove-AzSecurityWorkspaceSetting', + 'Get-AzSecurityThreatProtection', + 'Set-AzSecurityThreatProtection' # Variables to export from this module # VariablesToExport = @() diff --git a/src/Security/Security/Cmdlets/AdvancedThreatProtection/GetThreatProtectionPolicy.cs b/src/Security/Security/Cmdlets/AdvancedThreatProtection/GetThreatProtectionPolicy.cs new file mode 100644 index 000000000000..1536cac1a4a2 --- /dev/null +++ b/src/Security/Security/Cmdlets/AdvancedThreatProtection/GetThreatProtectionPolicy.cs @@ -0,0 +1,34 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------ + +using Commands.Security; +using Microsoft.Azure.Commands.Security.Common; +using Microsoft.Azure.Commands.Security.Models.Locations; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Security.Cmdlets.AdvancedThreatProtection +{ + [Cmdlet(VerbsCommon.Get, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SecurityThreatProtection", DefaultParameterSetName = ParameterSetNames.ResourceId), OutputType(typeof(PSSecurityLocation))] + public class GetThreatProtectionPolicy : SecurityCenterCmdletBase + { + [Parameter(Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = ParameterHelpMessages.ResourceId)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + public override void ExecuteCmdlet() + { + var result = SecurityCenterClient.AdvancedThreatProtection.GetWithHttpMessagesAsync(ResourceId).GetAwaiter().GetResult().Body; + WriteObject(result, enumerateCollection: true); + } + } +} diff --git a/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs b/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs new file mode 100644 index 000000000000..dcb79880fcd8 --- /dev/null +++ b/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs @@ -0,0 +1,59 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ------------------------------------ + +using System.Management.Automation; +using Commands.Security; +using Microsoft.Azure.Commands.Security.Common; +using Microsoft.Azure.Commands.Security.Models.ThreatProtection; + + +namespace Microsoft.Azure.Commands.Security.Cmdlets.AdvancedThreatProtection +{ + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SecurityThreatProtection", SupportsShouldProcess = true), OutputType(typeof(PSThreatProtection))] + public class SetThreatProtectionPolicy : SecurityCenterCmdletBase + { + [Parameter(ParameterSetName = ParameterSetNames.PolicyOn, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = ParameterHelpMessages.ResourceId)] + [Parameter(ParameterSetName = ParameterSetNames.PolicyOff, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = ParameterHelpMessages.ResourceId)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter(ParameterSetName = ParameterSetNames.PolicyOn, Mandatory = true, HelpMessage = ParameterHelpMessages.Enable)] + [ValidateNotNullOrEmpty] + public SwitchParameter Enable { get; set; } + + [Parameter(ParameterSetName = ParameterSetNames.PolicyOff, Mandatory = true, HelpMessage = ParameterHelpMessages.Disable)] + [ValidateNotNullOrEmpty] + public SwitchParameter Disable { get; set; } + + public override void ExecuteCmdlet() + { + bool policy; + + switch (ParameterSetName) + { + case ParameterSetNames.PolicyOn: + policy = true; + break; + case ParameterSetNames.PolicyOff: + policy = false; + break; + default: + throw new PSInvalidOperationException(); + } + + var result = SecurityCenterClient.AdvancedThreatProtection.CreateWithHttpMessagesAsync(ResourceId, policy).GetAwaiter().GetResult().Body; + WriteObject(result, enumerateCollection: true); + } + } +} diff --git a/src/Security/Security/Common/ParameterHelpMessages.cs b/src/Security/Security/Common/ParameterHelpMessages.cs index a0fc42dd5382..1bd7c2f05d1b 100644 --- a/src/Security/Security/Common/ParameterHelpMessages.cs +++ b/src/Security/Security/Common/ParameterHelpMessages.cs @@ -68,5 +68,12 @@ public static class ParameterHelpMessages public const string VirutalMachines = "Virtual Machines."; #endregion + + #region Threat Detection Settings + + public const string Disable = "Disables Threat Protection Policy"; + public const string Enable = "Enables Threat Protection Policy"; + + #endregion } } diff --git a/src/Security/Security/Common/ParameterSetNames.cs b/src/Security/Security/Common/ParameterSetNames.cs index 5cc08f363c50..04d6df33a9f7 100644 --- a/src/Security/Security/Common/ParameterSetNames.cs +++ b/src/Security/Security/Common/ParameterSetNames.cs @@ -24,5 +24,7 @@ public static class ParameterSetNames public const string ResourceGroupLevelResource = "ResourceGroupLevelResource"; public const string ResourceId = "ResourceId"; public const string InputObject = "InputObject"; + public const string PolicyOn = "PolicyOn"; + public const string PolicyOff = "PolicyOff"; } } diff --git a/src/Security/Security/Models/ThreatProtection/PSThreatProtection.cs b/src/Security/Security/Models/ThreatProtection/PSThreatProtection.cs new file mode 100644 index 000000000000..63c8e9510b88 --- /dev/null +++ b/src/Security/Security/Models/ThreatProtection/PSThreatProtection.cs @@ -0,0 +1,23 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Security.Models.ThreatProtection +{ + public class PSThreatProtection + { + public string Id { get; set; } + + public string Name { get; set; } + } +} diff --git a/src/Security/Security/Security.csproj b/src/Security/Security/Security.csproj index f225f261dd07..d9c6bd19b548 100644 --- a/src/Security/Security/Security.csproj +++ b/src/Security/Security/Security.csproj @@ -11,7 +11,7 @@ - + \ No newline at end of file diff --git a/src/Security/Security/help/Az.Security.md b/src/Security/Security/help/Az.Security.md index 4b65cd3facb5..b554dfbdd18c 100644 --- a/src/Security/Security/help/Az.Security.md +++ b/src/Security/Security/help/Az.Security.md @@ -1,4 +1,4 @@ ---- +--- Module Name: Az.Security Module Guid: 5e312bb4-9d3a-4c88-94c3-8e5bbb2e3da4 Download Help Link: https://docs.microsoft.com/en-us/powershell/module/az.security @@ -41,6 +41,9 @@ Gets the pricing tier data for Azure Security Center for a scope. ### [Get-AzSecurityTask](Get-AzSecurityTask.md) Gets the security tasks that Azure Security Center recommends you to do in order to strengthen your security posture. +### [Get-AzSecurityThreatProtection](Get-AzSecurityThreatProtection.md) +{{Fill in the Synopsis}} + ### [Get-AzSecurityWorkspaceSetting](Get-AzSecurityWorkspaceSetting.md) Gets the configured security workspace settings on a subscription. @@ -68,6 +71,9 @@ Updates a security contact for a subscription. ### [Set-AzSecurityPricing](Set-AzSecurityPricing.md) Sets the pricing of Azure Security Center tier for a scope. +### [Set-AzSecurityThreatProtection](Set-AzSecurityThreatProtection.md) +{{Fill in the Synopsis}} + ### [Set-AzSecurityWorkspaceSetting](Set-AzSecurityWorkspaceSetting.md) Updates the workspace settings for the subscription. diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index f3f2d4fcc8bb..b2d911be6d0b 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Get-AzSecurityThreatProtection ## SYNOPSIS -Gets the threat protection policy for a Microsoft Storage account. +Gets the threat protection policy for a storage account. ## SYNTAX @@ -18,7 +18,7 @@ Get-AzSecurityThreatProtection -ResourceId [-DefaultProfile [-Disable] [-DefaultProfile ``` ## DESCRIPTION -The **Set-AzSecurityThreatProtection** cmdlet sets a threat protetion for Microsoft Storage account. +The "Set-AzSecurityThreatProtection" cmdlet sets the threat protetion policy of a storage account. To use this cmdlet, specify the *ResourceId* and *-Enable* OR *-Disable* parameters to activate or deactivate the policy. From 6ed9fd9a68b2598217823b0d61ab63bf8c757e26 Mon Sep 17 00:00:00 2001 From: Shai Blum <43809680+shblum@users.noreply.github.com> Date: Thu, 14 Feb 2019 11:18:24 +0200 Subject: [PATCH 03/11] Update Get-AzSecurityThreatProtection.md --- src/Security/Security/help/Get-AzSecurityThreatProtection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index b2d911be6d0b..83ec49bcbd7c 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.security/get-azsecuritythreatprotection schema: 2.0.0 --- From 2d77c742a6e210c47acf44ef5a19348d2d45a5a1 Mon Sep 17 00:00:00 2001 From: Shai Blum <43809680+shblum@users.noreply.github.com> Date: Thu, 14 Feb 2019 11:19:03 +0200 Subject: [PATCH 04/11] Update Set-AzSecurityThreatProtection.md --- src/Security/Security/help/Set-AzSecurityThreatProtection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Security/help/Set-AzSecurityThreatProtection.md b/src/Security/Security/help/Set-AzSecurityThreatProtection.md index 8f8ca44f3ace..bbf0da598898 100644 --- a/src/Security/Security/help/Set-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Set-AzSecurityThreatProtection.md @@ -1,7 +1,7 @@ --- external help file: Microsoft.Azure.PowerShell.Cmdlets.Security.dll-Help.xml Module Name: Az.Security -online version: +online version: https://docs.microsoft.com/en-us/powershell/module/az.security/set-azsecuritythreatprotection schema: 2.0.0 --- From 2d7777cc7c1d113cbaf7924a55751067ab9e070d Mon Sep 17 00:00:00 2001 From: Shai Blum <43809680+shblum@users.noreply.github.com> Date: Thu, 14 Feb 2019 13:09:04 +0200 Subject: [PATCH 05/11] Update Get-AzSecurityThreatProtection.md --- src/Security/Security/help/Get-AzSecurityThreatProtection.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index 83ec49bcbd7c..10475d2112a9 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -30,7 +30,6 @@ PS C:\> Get-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5 ``` This command gets the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". -``` ## PARAMETERS From d272955cf9ee007876f8fe4e3cf7234610cf6fcc Mon Sep 17 00:00:00 2001 From: Shai Blum Date: Thu, 14 Feb 2019 15:05:54 +0200 Subject: [PATCH 06/11] Update SetThreatProtectionPolicy .cs Add DefaultParameterSetName --- .../AdvancedThreatProtection/SetThreatProtectionPolicy .cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs b/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs index dcb79880fcd8..a8071a77fd66 100644 --- a/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs +++ b/src/Security/Security/Cmdlets/AdvancedThreatProtection/SetThreatProtectionPolicy .cs @@ -20,7 +20,7 @@ namespace Microsoft.Azure.Commands.Security.Cmdlets.AdvancedThreatProtection { - [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SecurityThreatProtection", SupportsShouldProcess = true), OutputType(typeof(PSThreatProtection))] + [Cmdlet(VerbsCommon.Set, ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "SecurityThreatProtection", DefaultParameterSetName = ParameterSetNames.PolicyOn, SupportsShouldProcess = true), OutputType(typeof(PSThreatProtection))] public class SetThreatProtectionPolicy : SecurityCenterCmdletBase { [Parameter(ParameterSetName = ParameterSetNames.PolicyOn, Mandatory = true, ValueFromPipelineByPropertyName = true, HelpMessage = ParameterHelpMessages.ResourceId)] From eef4981d6d8d0439b0edf5616096a7f3c20eebb6 Mon Sep 17 00:00:00 2001 From: Shai Blum Date: Fri, 15 Feb 2019 03:18:56 +0200 Subject: [PATCH 07/11] iter2 --- .../SecurityAdvancedThreatProtectionTests.ps1 | 14 +- .../ScenarioTests/TestController.cs | 8 +- .../Security.Test/Security.Test.csproj | 1 - .../GetResourceId.json | 8122 +---------------- src/Security/Security/help/Az.Security.md | 4 +- .../help/Get-AzSecurityThreatProtection.md | 12 +- .../help/Set-AzSecurityThreatProtection.md | 20 +- 7 files changed, 127 insertions(+), 8054 deletions(-) diff --git a/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 index 334603a88a91..2206bf5fd096 100644 --- a/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 +++ b/src/Security/Security.Test/ScenarioTests/SecurityAdvancedThreatProtectionTests.ps1 @@ -19,8 +19,8 @@ Get a security contact by resource ID function Test-AzSecurityThreatProtection-ResourceId { # Setup - $testSuffix = "pstest" - $testParams = Get-AdvancedThreatProtectionTestEnvironmentParameters $testSuffix + $testPrefix = "psstorage" + $testParams = Get-AdvancedThreatProtectionTestEnvironmentParameters $testPrefix $resourceId = "/subscriptions/" + $testParams.subscriptionId + "/resourceGroups/" + $testParams.rgName + "/providers/Microsoft.Storage/storageAccounts/" + $testParams.accountName Create-TestEnvironmentWithParams $testParams @@ -41,13 +41,13 @@ function Test-AzSecurityThreatProtection-ResourceId .SYNOPSIS Gets the values of the parameters used at the tests #> -function Get-AdvancedThreatProtectionTestEnvironmentParameters ($testSuffix) +function Get-AdvancedThreatProtectionTestEnvironmentParameters ($testPrefix) { return @{ subscriptionId = (Get-AzContext).Subscription.Id; - rgName = "storage-atp-cmdlet-test-rg" +$testSuffix; - accountName = "storage" +$testSuffix; + rgName = getAssetName ($testPrefix); + accountName = getAssetName ($testPrefix); storageSku = "Standard_GRS"; - location = "West Central US" + location = Get-Location "Microsoft.Resources" "resourceGroups" "West US" } } @@ -61,5 +61,5 @@ function Create-TestEnvironmentWithParams ($testParams) New-AzResourceGroup -Name $testParams.rgName -Location $testParams.location # Create the storage account. - $storageAccount = New-AzStorageAccount -ResourceGroupName $testParams.rgName -AccountName $testParams.accountName -Location $testParams.location -SkuName $testParams.storageSku + $storageAccount = New-AzStorageAccount -ResourceGroupName $testParams.rgName -Name $testParams.accountName -Location $testParams.location -Type $testParams.storageSku } \ No newline at end of file diff --git a/src/Security/Security.Test/ScenarioTests/TestController.cs b/src/Security/Security.Test/ScenarioTests/TestController.cs index d00da7d29186..7660b07c4f70 100644 --- a/src/Security/Security.Test/ScenarioTests/TestController.cs +++ b/src/Security/Security.Test/ScenarioTests/TestController.cs @@ -13,9 +13,9 @@ // ---------------------------------------------------------------------------------- using Microsoft.Azure.Commands.Common.Authentication; -using Microsoft.Azure.Management.ResourceManager; +using Microsoft.Azure.Management.Internal.Resources; using Microsoft.Azure.Management.Security; -using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Version2017_10_01; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; using Microsoft.WindowsAzure.Commands.ScenarioTest; @@ -64,8 +64,8 @@ public void RunPowerShellTest(ServiceManagement.Common.Models.XunitTracingInterc _helper.GetRMModulePath(@"AzureRM.Security.psd1"), "ScenarioTests\\Common.ps1", "ScenarioTests\\" + callingClassName + ".ps1", - _helper.GetRMModulePath(@"AzureRM.Resources"), - _helper.GetRMModulePath(@"Az.Storage.psd1")); + "AzureRM.Storage.ps1", + "AzureRM.Resources.ps1"); _helper.RunPowerShellTest(scripts); } diff --git a/src/Security/Security.Test/Security.Test.csproj b/src/Security/Security.Test/Security.Test.csproj index 57e2481b8327..6bfc27d3824a 100644 --- a/src/Security/Security.Test/Security.Test.csproj +++ b/src/Security/Security.Test/Security.Test.csproj @@ -12,7 +12,6 @@ - \ No newline at end of file diff --git a/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json b/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json index 43d894a16d20..0b3f9fddd8e5 100644 --- a/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json +++ b/src/Security/Security.Test/SessionRecords/Microsoft.Azure.Commands.Security.Test.ScenarioTests.SecurityAdvancedThreatProtectionTests/GetResourceId.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/storage-atp-cmdlet-test-rgpstest?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", - "RequestMethod": "HEAD", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Resources?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuUmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac846d79-b6d8-4aba-b006-0562cb9c8090" + "c015f287-b99b-4222-a217-ce933b99d6dd" ], "Accept-Language": [ "en-US" @@ -16,7 +16,7 @@ "FxVersion/4.6.26919.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" ] }, "ResponseHeaders": { @@ -26,20 +26,17 @@ "Pragma": [ "no-cache" ], - "x-ms-failure-cause": [ - "gateway" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" + "11998" ], "x-ms-request-id": [ - "bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + "5afb53b6-754c-4a6b-9fac-c21cb4c15228" ], "x-ms-correlation-request-id": [ - "bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + "5afb53b6-754c-4a6b-9fac-c21cb4c15228" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212051Z:bf2e52ba-01ac-4d3f-bc91-cc9e34bea43c" + "UKSOUTH:20190215T010904Z:5afb53b6-754c-4a6b-9fac-c21cb4c15228" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,29 +45,29 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:20:50 GMT" - ], - "Content-Length": [ - "124" + "Fri, 15 Feb 2019 01:09:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "7385" ] }, - "ResponseBody": "", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Resources\",\r\n \"namespace\": \"Microsoft.Resources\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"tenants\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"notifyResourceJobs\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-02-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkPolicyCompliance\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkresourcename\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/providers\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/operationresults\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourceGroups\",\r\n \"locations\": [\r\n \"Central US\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West US 2\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"West Central US\",\r\n \"North Europe\",\r\n \"West Europe\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"Brazil South\",\r\n \"Australia Southeast\",\r\n \"Australia East\",\r\n \"West India\",\r\n \"South India\",\r\n \"Central India\",\r\n \"Canada Central\",\r\n \"Canada East\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"France South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/resourcegroups/resources\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagnames\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"subscriptions/tagNames/tagValues\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deployments/operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"links\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2018-11-01\",\r\n \"2018-09-01\",\r\n \"2018-08-01\",\r\n \"2018-07-01\",\r\n \"2018-05-01\",\r\n \"2018-02-01\",\r\n \"2018-01-01\",\r\n \"2017-08-01\",\r\n \"2017-06-01\",\r\n \"2017-05-10\",\r\n \"2017-05-01\",\r\n \"2017-03-01\",\r\n \"2016-09-01\",\r\n \"2016-07-01\",\r\n \"2016-06-01\",\r\n \"2016-02-01\",\r\n \"2015-11-01\",\r\n \"2015-01-01\",\r\n \"2014-04-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2015-01-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/storage-atp-cmdlet-test-rgpstest?api-version=2018-05-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0P2FwaS12ZXJzaW9uPTIwMTgtMDUtMDE=", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourcegroups/psstorage6997?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlZ3JvdXBzL3Bzc3RvcmFnZTY5OTc/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "12a5a89d-827e-479a-97d0-5636563d2e5d" + "24f343d5-e949-4385-b51f-8849b77a07d0" ], "Accept-Language": [ "en-US" @@ -79,13 +76,13 @@ "FxVersion/4.6.26919.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.9.1.0" + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.1.14" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "37" + "29" ] }, "ResponseHeaders": { @@ -99,13 +96,13 @@ "1198" ], "x-ms-request-id": [ - "ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + "9b777247-d39c-4063-ac6c-e340e3ed8fb3" ], "x-ms-correlation-request-id": [ - "ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + "9b777247-d39c-4063-ac6c-e340e3ed8fb3" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212054Z:ddd8c9ce-c6d0-4b73-a258-3c8e78dbf63c" + "UKSOUTH:20190215T010907Z:9b777247-d39c-4063-ac6c-e340e3ed8fb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -114,10 +111,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:20:54 GMT" + "Fri, 15 Feb 2019 01:09:06 GMT" ], "Content-Length": [ - "224" + "179" ], "Content-Type": [ "application/json; charset=utf-8" @@ -126,86 +123,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest\",\r\n \"name\": \"storage-atp-cmdlet-test-rgpstest\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997\",\r\n \"name\": \"psstorage6997\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/checkNameAvailability?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOC0wNy0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0abcd9b1-5657-44cf-8a40-3c971e6e12f2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "79" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3042c451-86e2-466d-8875-262a9e0ce288" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-correlation-request-id": [ - "a1fb56c9-93d6-4f30-8724-f3407c15cb9f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212055Z:a1fb56c9-93d6-4f30-8724-f3407c15cb9f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:20:54 GMT" - ], - "Content-Length": [ - "22" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206?api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3Bzc3RvcmFnZTY5OTcvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9wc3N0b3JhZ2U4MjA2P2FwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West Central US\"\r\n}", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed7c924-8e9b-4c2d-ba0d-df375cf5655f" + "ce5e8874-563d-4622-93b4-091563e995ac" ], "Accept-Language": [ "en-US" @@ -214,13 +142,13 @@ "FxVersion/4.6.26919.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.14" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "105" + "97" ] }, "ResponseHeaders": { @@ -231,13 +159,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" + "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westus/asyncoperations/510b0ff0-643a-4273-8ba7-cfe09cc4c6d3?monitor=true&api-version=2017-10-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "1f3cb8ab-f01a-4fdb-88e7-e377282efc8c" + "510b0ff0-643a-4273-8ba7-cfe09cc4c6d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -249,205 +177,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "ffa9bc07-9350-417f-9877-d586c01d8675" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212058Z:ffa9bc07-9350-417f-9877-d586c01d8675" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:20:57 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b75f27d7-0834-452f-9f7d-a5263279d595" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "20b0a437-39fd-4512-aa27-dd9d3e346a16" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212116Z:20b0a437-39fd-4512-aa27-dd9d3e346a16" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:15 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "69d29abd-bfb0-4324-be3a-32e07ee26ef3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "39eb69d4-c7d5-4887-81e0-327c5ebd2388" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212119Z:39eb69d4-c7d5-4887-81e0-327c5ebd2388" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:18 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "940bff72-4466-4c42-9270-a8af09268f90" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "103335c0-0243-4afb-9110-1fc0c33c415f" + "c60df2c0-9660-458b-b063-5cc04357b4aa" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212122Z:103335c0-0243-4afb-9110-1fc0c33c415f" + "UKSOUTH:20190215T010910Z:c60df2c0-9660-458b-b063-5cc04357b4aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:21:22 GMT" + "Fri, 15 Feb 2019 01:09:10 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -463,8 +202,8 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", + "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westus/asyncoperations/510b0ff0-643a-4273-8ba7-cfe09cc4c6d3?monitor=true&api-version=2017-10-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy81MTBiMGZmMC02NDNhLTQyNzMtOGJhNy1jZmUwOWNjNGM2ZDM/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTctMTAtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { @@ -472,7 +211,7 @@ "FxVersion/4.6.26919.02", "OSName/Windows", "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" + "Microsoft.Azure.Management.Storage.Version2017.10.01.StorageManagementClient/1.1.14" ] }, "ResponseHeaders": { @@ -482,14 +221,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "479c0d96-cd9d-4cbb-9c85-8228fe9665cf" + "1ba9e45a-ec9f-4fc2-b94d-3d0d61eb7a4d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,7702 +231,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "51e292a6-bcaa-4dc5-8d40-c44a463ff5ac" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212125Z:51e292a6-bcaa-4dc5-8d40-c44a463ff5ac" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:25 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "213c5cdb-58ba-4eec-8515-7cf29299d29d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "e750dce6-511e-4b14-8b73-550282869d4e" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212129Z:e750dce6-511e-4b14-8b73-550282869d4e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:28 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "333a3d28-164d-4cae-bac1-29288572149e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "792a2eea-f036-48b0-b10b-01fdbddedd96" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212132Z:792a2eea-f036-48b0-b10b-01fdbddedd96" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:31 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b26a655b-7aee-4567-b158-50c76ff37b40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "be668923-9677-4fd7-8540-109fb07d782a" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212135Z:be668923-9677-4fd7-8540-109fb07d782a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:34 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "afac25d8-de60-494a-a410-2dab6735c5df" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "5fff76a9-0015-48f3-a4a2-a9cefedd8bc9" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212138Z:5fff76a9-0015-48f3-a4a2-a9cefedd8bc9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3a07d26f-727f-4548-a5c8-5cadf1a814f5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "b308e3f0-2b2f-448e-ba74-319b35bf02c5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212142Z:b308e3f0-2b2f-448e-ba74-319b35bf02c5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:41 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ea88be01-e94f-45c1-a08e-b10de09e8229" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-correlation-request-id": [ - "16a317f5-8585-4872-8ae8-f1b5ba6deae5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212145Z:16a317f5-8585-4872-8ae8-f1b5ba6deae5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "96bea3d1-fe9b-4406-baf8-bcc7e838360e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" - ], - "x-ms-correlation-request-id": [ - "56cf1bf8-2aa5-4f26-9743-be45b6478630" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212148Z:56cf1bf8-2aa5-4f26-9743-be45b6478630" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:48 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "934d2d8b-756e-456f-b872-de7f873c9f37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" - ], - "x-ms-correlation-request-id": [ - "f2224b91-e775-48c5-be58-92eafff4b72c" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212151Z:f2224b91-e775-48c5-be58-92eafff4b72c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:51 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "da9a7c98-bfa4-4986-8e23-bccd27632139" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "1650506b-0898-4053-b8e5-64be1d4531c2" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212155Z:1650506b-0898-4053-b8e5-64be1d4531c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:54 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0db736de-674f-4628-9089-b09919cac7bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" - ], - "x-ms-correlation-request-id": [ - "528cc838-e45c-4f2e-9f0b-550a04689be2" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212158Z:528cc838-e45c-4f2e-9f0b-550a04689be2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:21:58 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "e8a169ce-9e68-4ac3-ba69-9b5f038e5680" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" - ], - "x-ms-correlation-request-id": [ - "c49e8604-cd7b-40eb-8994-a40452e38cc0" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212201Z:c49e8604-cd7b-40eb-8994-a40452e38cc0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:01 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ebaaac36-9990-4325-ba3f-766d4c806d2d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "b609a923-b298-4a5f-886a-cca96e55c73d" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212205Z:b609a923-b298-4a5f-886a-cca96e55c73d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:04 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "fd9388b4-25c5-48aa-8032-72ce3621e234" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" - ], - "x-ms-correlation-request-id": [ - "99d5c545-d356-4734-9085-1a1db356a0af" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212208Z:99d5c545-d356-4734-9085-1a1db356a0af" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:07 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "20d3ab1b-f294-4615-a8a3-9d5db84b7e02" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" - ], - "x-ms-correlation-request-id": [ - "957e4015-b50c-42a0-af24-ee43e228eef3" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212211Z:957e4015-b50c-42a0-af24-ee43e228eef3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:10 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c842f98f-e660-4db5-bc1b-ed6b5dbafe2f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" - ], - "x-ms-correlation-request-id": [ - "dd1edeb1-1121-4c19-8bb8-1e69abec4f55" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212214Z:dd1edeb1-1121-4c19-8bb8-1e69abec4f55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:14 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "40ab9ac9-672b-4373-9229-b1cb769d8bd3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" - ], - "x-ms-correlation-request-id": [ - "6eda7dea-7c3f-4e20-8e5e-b1abf235e661" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212218Z:6eda7dea-7c3f-4e20-8e5e-b1abf235e661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:17 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "57cc84c3-2957-431b-bb9a-e4119b4199cc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" - ], - "x-ms-correlation-request-id": [ - "07e389a2-b58e-43bb-b4a9-c3ea9c24e572" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212221Z:07e389a2-b58e-43bb-b4a9-c3ea9c24e572" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:20 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "226fb27a-5f46-427f-af7b-095bc2d58de7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" - ], - "x-ms-correlation-request-id": [ - "8cd88a01-96a6-4531-ab5e-6c6d742c3f7a" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212224Z:8cd88a01-96a6-4531-ab5e-6c6d742c3f7a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:23 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c0324044-e8ec-4d2d-91ab-53aa0cdaf5fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11976" - ], - "x-ms-correlation-request-id": [ - "84b159d9-9a77-4bb0-99e2-a2883bc1f64f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212227Z:84b159d9-9a77-4bb0-99e2-a2883bc1f64f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:27 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d6366b9f-9f2b-4311-a2b4-24fdb77d4c6c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "x-ms-correlation-request-id": [ - "f5960bdf-ac27-4bee-9a73-4e9db4d65ed9" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212230Z:f5960bdf-ac27-4bee-9a73-4e9db4d65ed9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:30 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "439331ce-a095-48a4-9159-c389b4d8c259" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11974" - ], - "x-ms-correlation-request-id": [ - "f78a425a-c553-4915-b6d4-f12f124abdd5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212234Z:f78a425a-c553-4915-b6d4-f12f124abdd5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "04c27f31-65e4-4171-964a-4ee44a81a092" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "x-ms-correlation-request-id": [ - "8b7d9582-83cd-4b46-861f-af982fb32fb8" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212237Z:8b7d9582-83cd-4b46-861f-af982fb32fb8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "12f56d92-8db5-48f4-99e8-29bce4979964" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11972" - ], - "x-ms-correlation-request-id": [ - "3ae68db1-59ef-422a-b98a-521b91ec92d6" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212240Z:3ae68db1-59ef-422a-b98a-521b91ec92d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9ed48ed0-bc84-460c-96e9-6d7e475bca62" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11971" - ], - "x-ms-correlation-request-id": [ - "e75d4b0a-e149-4910-8aad-e1e16c8d16df" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212243Z:e75d4b0a-e149-4910-8aad-e1e16c8d16df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:43 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "20a48312-181d-41fe-8cd1-c9e55f6db0d1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11970" - ], - "x-ms-correlation-request-id": [ - "756a7bd2-d23f-4d29-98b4-af7c1a8ab69b" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212247Z:756a7bd2-d23f-4d29-98b4-af7c1a8ab69b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:46 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cb7aaa00-6acb-4539-a743-d99b12014ce0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], - "x-ms-correlation-request-id": [ - "f032305a-d462-4aec-b25a-18369e9f90cf" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212250Z:f032305a-d462-4aec-b25a-18369e9f90cf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:49 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "626d857d-e407-4fa4-82cc-2955f81eaf38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11968" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "2e096e65-94d9-4e94-8a2e-4499849e941a" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212253Z:2e096e65-94d9-4e94-8a2e-4499849e941a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:52 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "db4b4665-ab08-43db-87d5-9c54daa28f7b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], - "x-ms-correlation-request-id": [ - "b4bca686-d567-4591-8496-bd929aba7378" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212257Z:b4bca686-d567-4591-8496-bd929aba7378" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:56 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "bf4b3bd2-b1f2-4f37-ac2c-5eee8c1f02e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11966" - ], - "x-ms-correlation-request-id": [ - "677c343c-7199-4e81-952c-0af99d4eda5c" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212300Z:677c343c-7199-4e81-952c-0af99d4eda5c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:22:59 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "40057d11-a716-439a-b1c1-e310c8ce0eff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11965" - ], - "x-ms-correlation-request-id": [ - "4eb9aa7d-bd4e-4b8e-9f6a-d19c6d7e7240" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212303Z:4eb9aa7d-bd4e-4b8e-9f6a-d19c6d7e7240" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:03 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c858259b-576a-4e97-98d6-84ab80a9c1d7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11964" - ], - "x-ms-correlation-request-id": [ - "56a0a39e-c5d7-4a29-9d20-b4b24799db9b" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212306Z:56a0a39e-c5d7-4a29-9d20-b4b24799db9b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:06 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "52b0ae14-3e68-4e19-b835-0f1e5de6bc84" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11963" - ], - "x-ms-correlation-request-id": [ - "e0128f96-6a6c-48ed-a2e0-9a272ed3a6d2" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212310Z:e0128f96-6a6c-48ed-a2e0-9a272ed3a6d2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:09 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a8c42308-7202-4e65-99fc-53b017dff6d6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11962" - ], - "x-ms-correlation-request-id": [ - "da432455-cfcc-4c77-9e34-c1725c5b340c" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212313Z:da432455-cfcc-4c77-9e34-c1725c5b340c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:12 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "36a0c785-4d87-4cb5-a1e3-d909d09148da" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11961" - ], - "x-ms-correlation-request-id": [ - "98c3f337-4f02-4fdb-8db0-6a30158b819e" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212316Z:98c3f337-4f02-4fdb-8db0-6a30158b819e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:16 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3e9d95b7-ad5d-495b-8aeb-f419de3413c0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "4829554d-de3a-4077-9c74-55c85876438f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212319Z:4829554d-de3a-4077-9c74-55c85876438f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cd36ab44-361b-4eda-89e0-03fbbf19b0ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" - ], - "x-ms-correlation-request-id": [ - "62bec2f5-e68c-4f36-9abb-4501df13580d" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212323Z:62bec2f5-e68c-4f36-9abb-4501df13580d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:22 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "527371ce-2091-424e-b4e4-c4d8981a98f9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" - ], - "x-ms-correlation-request-id": [ - "25838895-ea9f-4742-bd22-37d3c4bc56fc" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212326Z:25838895-ea9f-4742-bd22-37d3c4bc56fc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:25 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6562faaa-5448-4dfb-83d1-db318049e849" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" - ], - "x-ms-correlation-request-id": [ - "6f22a198-bc75-417c-b1ef-1e0dddef745e" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212329Z:6f22a198-bc75-417c-b1ef-1e0dddef745e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:29 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "475cae95-d0f6-406f-be8d-aac058b4712d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" - ], - "x-ms-correlation-request-id": [ - "e7be2370-90db-4ff5-aff1-28ddd5666a7b" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212332Z:e7be2370-90db-4ff5-aff1-28ddd5666a7b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:32 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "aeb32977-0725-4bd1-a615-6904e5504a1c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" - ], - "x-ms-correlation-request-id": [ - "193fb664-1382-496e-be1a-efd2288a0d06" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212336Z:193fb664-1382-496e-be1a-efd2288a0d06" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:35 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a33c7e8e-61de-412a-bc38-aa1c03fc3cfd" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "x-ms-correlation-request-id": [ - "26a6e98c-2025-498c-91dd-5b0827b38926" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212339Z:26a6e98c-2025-498c-91dd-5b0827b38926" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:38 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0cd930f1-8b9c-4fd2-a775-b4007c3958ca" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" - ], - "x-ms-correlation-request-id": [ - "9f628bce-b237-4d35-8b97-b5a3f6bade28" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212342Z:9f628bce-b237-4d35-8b97-b5a3f6bade28" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6d3b303d-dc19-4ea8-afb1-0b00ced52eda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "9a51e53e-340e-4153-b955-adfa9a391a18" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212345Z:9a51e53e-340e-4153-b955-adfa9a391a18" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2fbf80b7-1a62-418c-b9a2-ba786117a971" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "27b43399-c1f9-409a-a55a-6234ca1d91d0" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212348Z:27b43399-c1f9-409a-a55a-6234ca1d91d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:48 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "1ba06b2e-423e-4c5e-b582-76f4b461862b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "cad512bd-c12e-4354-9116-6809acf909c4" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212352Z:cad512bd-c12e-4354-9116-6809acf909c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:51 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9227b6eb-6388-423c-8ee4-5e1529eb46d5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "2d89747b-ca1b-4f85-b631-2ee8ab33e188" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212355Z:2d89747b-ca1b-4f85-b631-2ee8ab33e188" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:55 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f6362313-a5b8-48df-ab42-121ea37e5a3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "ffe0bef3-fa9b-45b3-a7b6-8923569fd1c5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212359Z:ffe0bef3-fa9b-45b3-a7b6-8923569fd1c5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:23:58 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9946134a-25ed-4e9c-8001-ec1c24f793ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "c142e1a8-6b03-4ac5-90cc-665eee5f3a11" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212402Z:c142e1a8-6b03-4ac5-90cc-665eee5f3a11" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:02 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "814e5012-5180-4822-9c59-b3c97f62e5fa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-correlation-request-id": [ - "0b47c518-5901-490c-a83d-4abf5b86189f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212405Z:0b47c518-5901-490c-a83d-4abf5b86189f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:05 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "816f2d17-4c1b-4562-8923-d35a1cc1b97b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-correlation-request-id": [ - "5bd7c959-ff0c-4369-8665-d291e8c32ffb" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212408Z:5bd7c959-ff0c-4369-8665-d291e8c32ffb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:08 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0ab0b8db-2b58-4bcd-b39c-39f6ddc5691f" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-correlation-request-id": [ - "409e18c3-f109-4627-91e8-46f3ae379e77" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212411Z:409e18c3-f109-4627-91e8-46f3ae379e77" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:11 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "246edeae-bfa4-4acb-993e-b7d290862c72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-correlation-request-id": [ - "29c12a08-4c48-4de3-b73f-780b241abd2d" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212415Z:29c12a08-4c48-4de3-b73f-780b241abd2d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:14 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ce19076b-ea12-4556-8155-08943e330ecb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-correlation-request-id": [ - "aeb749d9-5e91-4f94-a5ef-b186d8f4d1ba" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212418Z:aeb749d9-5e91-4f94-a5ef-b186d8f4d1ba" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:17 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "edab016d-e062-4e76-8777-d627181db395" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-correlation-request-id": [ - "6c11225f-65a1-4b55-9339-6ef3fc10808a" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212421Z:6c11225f-65a1-4b55-9339-6ef3fc10808a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:21 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a56a1fb0-cad1-4174-bf75-eecc36ebedb9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "ec60ffcb-f871-48e2-8d3d-dcb735f72632" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212424Z:ec60ffcb-f871-48e2-8d3d-dcb735f72632" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:24 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "bb4cbdcb-6fb9-4bea-b4b9-8dd40182bf29" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "1f02f24c-d8a8-4df8-92c2-ad73262cc7fc" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212428Z:1f02f24c-d8a8-4df8-92c2-ad73262cc7fc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:27 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b2900afe-4984-469d-83d6-4e5bac49f6eb" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "f9bb4395-5d72-4744-bf06-f41d318ec22f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212431Z:f9bb4395-5d72-4744-bf06-f41d318ec22f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:31 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ff23b520-ccdf-4354-a0a2-106403d196b6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "dee946a7-c572-45eb-b72f-2fffd8cc99d0" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212434Z:dee946a7-c572-45eb-b72f-2fffd8cc99d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:34 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f373ca50-75e3-46c6-91cb-27774612202d" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "x-ms-correlation-request-id": [ - "fbc522dd-6484-43cf-a80d-a526b19f6970" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212437Z:fbc522dd-6484-43cf-a80d-a526b19f6970" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0f13a627-1e7e-48d2-93b5-6a444784d154" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "a5eb7abe-3d11-4e42-9aa5-2326c5a6c153" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212441Z:a5eb7abe-3d11-4e42-9aa5-2326c5a6c153" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "31cb1a8f-a300-42db-a0ff-d13ca60087aa" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "9a940471-8138-4e6d-b86e-9e3b793f1736" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212444Z:9a940471-8138-4e6d-b86e-9e3b793f1736" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:44 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "85b65e96-5689-4d7a-9f6d-3c03f94e8ec4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "9e9df6fc-ab25-4781-b14c-40b580d44024" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212447Z:9e9df6fc-ab25-4781-b14c-40b580d44024" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "71f37634-321e-49c8-9d99-8ae6192537ec" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "57c8fe52-a680-4c30-ae7e-cd6e8346590e" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212450Z:57c8fe52-a680-4c30-ae7e-cd6e8346590e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "da0b0074-1bc4-44ad-9630-0d166584b776" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "7449e51c-8c31-4892-a437-cbac3133c2e5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212454Z:7449e51c-8c31-4892-a437-cbac3133c2e5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:53 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b458162c-05a7-4bc2-82bb-95a47ac5cd04" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "7a07a485-9de4-423d-9f09-4c72c84ade61" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212457Z:7a07a485-9de4-423d-9f09-4c72c84ade61" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:24:56 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c74963b8-3424-46b5-b700-790594e06270" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "8edc8a7c-0387-482d-bd39-282b145acc8a" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212500Z:8edc8a7c-0387-482d-bd39-282b145acc8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:00 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "42d7377b-578d-4ba8-a193-a5ed582f0b03" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "cd6c44e8-44b4-496d-a78b-9ca16b3b377d" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212504Z:cd6c44e8-44b4-496d-a78b-9ca16b3b377d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:03 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "24bf67df-e30d-43c4-9fec-652621ffb0a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "c08a2fa8-c7dc-49cd-ab63-d8324d3eecd5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212507Z:c08a2fa8-c7dc-49cd-ab63-d8324d3eecd5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:06 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "73425b97-4ce8-4a7f-8fd8-a538aff9bf52" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "6990af77-41c3-4c50-b262-c7da9648d583" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212510Z:6990af77-41c3-4c50-b262-c7da9648d583" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:10 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "af3056fd-b10b-4924-a55b-f0b35cbc59de" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "f26af8e3-5b44-49b8-a0d8-27856bad6624" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212513Z:f26af8e3-5b44-49b8-a0d8-27856bad6624" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:13 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9648d66a-aabd-4ed2-8fd2-e44dc01e3e57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "81a471e6-66a2-42b8-be42-0dc9e2fd435b" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212517Z:81a471e6-66a2-42b8-be42-0dc9e2fd435b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:16 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "817ee28d-083c-4b7b-a926-995f9af14801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "7309798b-127c-499d-a2b8-8a4e67e769f5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212520Z:7309798b-127c-499d-a2b8-8a4e67e769f5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3c639cc5-8454-4308-b9bf-249066186e12" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "c7e526e2-3ff3-4e40-843f-64e0c5c7a07f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212523Z:c7e526e2-3ff3-4e40-843f-64e0c5c7a07f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:23 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7376f59c-e80d-4610-9bbe-b42a8073a0bc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "0aa17776-c50a-4281-a49c-51087751a699" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212526Z:0aa17776-c50a-4281-a49c-51087751a699" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:26 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4a67f2a9-344a-4dd6-bc46-e7cae06a8d96" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-correlation-request-id": [ - "75c8d5b8-c4e1-44ed-95aa-148030b22772" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212529Z:75c8d5b8-c4e1-44ed-95aa-148030b22772" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:29 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0663cede-4709-4cb1-a9e6-6e42f4da4ad9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "fca22b5f-2110-41d9-9cf4-7df7eb4a57f5" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212533Z:fca22b5f-2110-41d9-9cf4-7df7eb4a57f5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:32 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "1792c718-f411-43f6-ac4b-0d99eb286bff" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "97ddf2e6-4705-4542-9d69-844a2504996f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212536Z:97ddf2e6-4705-4542-9d69-844a2504996f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:35 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "adf61b72-77ee-42d2-8c6c-94d5b0dcb2e9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "4c15d51f-39c8-4a06-a831-6e76d1e53bd3" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212539Z:4c15d51f-39c8-4a06-a831-6e76d1e53bd3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:39 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d8368096-c43c-4c5b-8390-d2bf308c4dda" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "a2cf03dc-cbae-484f-91f8-f08fb6b50115" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212542Z:a2cf03dc-cbae-484f-91f8-f08fb6b50115" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c9c112fd-6933-4779-bcc1-6e9eb40bd3bf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-correlation-request-id": [ - "695af1f3-1bfc-4096-9bc3-09bdefa8132d" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212546Z:695af1f3-1bfc-4096-9bc3-09bdefa8132d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b9de772f-4487-4b77-863a-63d2d5e3c9ab" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "36daebae-aaa0-461b-9498-7e44eced2870" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212549Z:36daebae-aaa0-461b-9498-7e44eced2870" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:48 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "95363305-7645-41a0-9bdf-6c8c06ef3240" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-correlation-request-id": [ - "c06397ca-ba6d-4127-a269-1b1cb3cd0302" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212552Z:c06397ca-ba6d-4127-a269-1b1cb3cd0302" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:52 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4692ba59-e22c-4756-b8b9-abadd2fb35e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-correlation-request-id": [ - "cdcd4170-7f60-4303-b41d-a56385778033" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212556Z:cdcd4170-7f60-4303-b41d-a56385778033" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:55 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b26554b8-11f4-4193-a369-8ac47efe581b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-correlation-request-id": [ - "a9201e45-5ab5-4c8b-b23d-16a51a2edd63" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212559Z:a9201e45-5ab5-4c8b-b23d-16a51a2edd63" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:25:58 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "fea24d37-f161-4b8f-b391-934e9c1dd996" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-correlation-request-id": [ - "c627efe8-5798-412a-b38d-9391b9d642e9" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212602Z:c627efe8-5798-412a-b38d-9391b9d642e9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:01 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "757ca4dd-bc95-4e4b-a6ec-ae673de2c0d8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-correlation-request-id": [ - "7994fad4-7cbf-4fe6-b9c4-3eb2e9e09d09" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212605Z:7994fad4-7cbf-4fe6-b9c4-3eb2e9e09d09" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:05 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "15371a60-be96-47dc-9dc8-06536dae8796" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-correlation-request-id": [ - "2d2a935a-2607-4f29-9469-52a01dbb2341" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212609Z:2d2a935a-2607-4f29-9469-52a01dbb2341" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:08 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "28b36beb-e4ed-4db7-b40f-318eff312b0e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-correlation-request-id": [ - "7860041f-de28-4fa0-ac92-b65f0d8a075f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212612Z:7860041f-de28-4fa0-ac92-b65f0d8a075f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:11 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8427fa6a-9c02-4517-9c38-3e374ed943a7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "1efa525c-ef90-4a1f-b913-fb54d6b1fd06" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212615Z:1efa525c-ef90-4a1f-b913-fb54d6b1fd06" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:15 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7a6d9de0-71a8-4d85-a668-308bc2785540" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-correlation-request-id": [ - "87c49057-8376-476f-8e3e-951ec10af57b" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212618Z:87c49057-8376-476f-8e3e-951ec10af57b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:18 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "1a8c1e29-16d9-4af3-bfd1-5252902eb0d3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-correlation-request-id": [ - "ed5dc1f7-735e-4155-89f7-2a254197426c" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212622Z:ed5dc1f7-735e-4155-89f7-2a254197426c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:21 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b0f678bc-a462-43ed-878c-d0454e7493e4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "x-ms-correlation-request-id": [ - "8921560b-31aa-4fbf-bc29-161906d99113" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212625Z:8921560b-31aa-4fbf-bc29-161906d99113" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:25 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a223247a-e1f1-4dca-9a21-a34ec5f15290" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-correlation-request-id": [ - "ab70fa14-c96e-4211-8539-bfcb22b5805c" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212628Z:ab70fa14-c96e-4211-8539-bfcb22b5805c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:28 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ca2e0312-ca09-415e-9ac0-03faa5ff5719" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-correlation-request-id": [ - "09bb34e9-c450-496a-901b-430f77ed96b4" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212631Z:09bb34e9-c450-496a-901b-430f77ed96b4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:31 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2b83fb4a-9770-4f72-bbc6-c6dba1e8d2ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-correlation-request-id": [ - "7c9d8534-14a8-4a85-b9c1-3601bdf11866" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212635Z:7c9d8534-14a8-4a85-b9c1-3601bdf11866" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:34 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ef630190-8e4e-477a-b9fc-72e16c3fa517" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-correlation-request-id": [ - "d587904b-f5e5-4a2f-a452-68942e143127" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212638Z:d587904b-f5e5-4a2f-a452-68942e143127" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f9bbe234-2ee7-4e6a-8c17-1aaab5195ca1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-correlation-request-id": [ - "41beb96a-e051-409a-b5c5-5bd8e7ff46d6" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212641Z:41beb96a-e051-409a-b5c5-5bd8e7ff46d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c3aa6ea1-afe4-40af-a6f4-fee30d80a105" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-correlation-request-id": [ - "6f5d6579-07f7-4c37-b962-7eae3df42936" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212644Z:6f5d6579-07f7-4c37-b962-7eae3df42936" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:44 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "49547cbf-3fc8-4546-893c-975fcba2517e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "6e9eceb5-be45-45bf-b864-932e89f55131" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212647Z:6e9eceb5-be45-45bf-b864-932e89f55131" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "11966083-9447-44d6-a460-2b815dd7149e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-correlation-request-id": [ - "26ba250d-8aec-436f-b877-36ad1c331977" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212651Z:26ba250d-8aec-436f-b877-36ad1c331977" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "30c0543d-6e1c-4dd3-84dd-c0f2f7e95894" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-correlation-request-id": [ - "731610f9-cd13-4bb0-9e50-e5d2ac4dbf3e" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212654Z:731610f9-cd13-4bb0-9e50-e5d2ac4dbf3e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:53 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ee617ade-9d82-4acc-b54a-a2a16e520b38" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-correlation-request-id": [ - "37502f4d-1ebd-4fce-8867-c10fdd7f4175" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212658Z:37502f4d-1ebd-4fce-8867-c10fdd7f4175" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:26:57 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "fca77c54-fb71-4f20-91a8-46e8494cfde6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-correlation-request-id": [ - "4d8b4a31-214f-4f0f-85d1-48da5cfcc4ee" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212701Z:4d8b4a31-214f-4f0f-85d1-48da5cfcc4ee" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:00 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c652fc80-7ebb-4672-b5e3-121cec610759" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-correlation-request-id": [ - "59b3f649-bc75-40f9-981f-c65bbfadb2d6" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212704Z:59b3f649-bc75-40f9-981f-c65bbfadb2d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:04 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f62dff7d-00e9-41f1-b4cd-10c90ac4636c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-correlation-request-id": [ - "8b32620c-c99b-4fa3-81ee-63643c13edf0" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212707Z:8b32620c-c99b-4fa3-81ee-63643c13edf0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:07 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8669a2c2-f6f3-4d30-8aea-6888f32f76e3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-correlation-request-id": [ - "066aaae9-6a25-4963-97b9-8ce3321ce425" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212710Z:066aaae9-6a25-4963-97b9-8ce3321ce425" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:10 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9be52925-2258-4601-8c09-af7e943bcbad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-correlation-request-id": [ - "30522df9-af62-4310-875c-e2e9684ba661" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212714Z:30522df9-af62-4310-875c-e2e9684ba661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:13 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6ca8e0e9-857c-47dd-9d89-b31ae6c250c6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-correlation-request-id": [ - "1ed44aa2-09cc-41aa-926a-bb312e32c282" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212717Z:1ed44aa2-09cc-41aa-926a-bb312e32c282" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:17 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "43478826-802a-4c9d-9999-101ada9389e2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-correlation-request-id": [ - "1289b30d-982a-4a02-81d7-97274c7adaaa" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212720Z:1289b30d-982a-4a02-81d7-97274c7adaaa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:20 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "e2154210-8efb-4bbe-aa50-56a6ad1ff291" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-correlation-request-id": [ - "c65ed053-efd1-463c-8149-e8b86df32551" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212723Z:c65ed053-efd1-463c-8149-e8b86df32551" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:23 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8cb0465e-ab38-4237-aeae-c521eae48699" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-correlation-request-id": [ - "2943018d-7493-4fb0-9a7a-72ecf35feb0f" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212727Z:2943018d-7493-4fb0-9a7a-72ecf35feb0f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:26 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "fe9c0de3-56be-4d63-ace5-260b75f7439e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-correlation-request-id": [ - "bb71fde2-3d33-4dbd-9f0e-3b21031ba406" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212730Z:bb71fde2-3d33-4dbd-9f0e-3b21031ba406" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:29 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "1ec88f9f-de9c-4606-8588-29daa0083c92" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-correlation-request-id": [ - "5d4fde4e-a038-42bd-ac6c-576f65ba8dd9" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212733Z:5d4fde4e-a038-42bd-ac6c-576f65ba8dd9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "170e052c-a8fc-4d98-94a1-a519e1d3821b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-correlation-request-id": [ - "0403231a-d754-4096-9b16-c94d6e29a764" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212736Z:0403231a-d754-4096-9b16-c94d6e29a764" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:36 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9370fb02-8879-4e69-a57a-22e02e31c3b0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-correlation-request-id": [ - "004c45f2-7100-4833-8ac9-2090abd22626" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212740Z:004c45f2-7100-4833-8ac9-2090abd22626" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:39 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "46c7e440-c040-4257-8cba-e9703ebb2c42" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-correlation-request-id": [ - "318732f8-a6a2-4bb2-8084-4c0babfceb39" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212743Z:318732f8-a6a2-4bb2-8084-4c0babfceb39" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7f9a4aae-1ef7-4160-b02a-2c6dd1581daf" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "75b72dad-b252-4d64-9f8b-804c31e355a2" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212746Z:75b72dad-b252-4d64-9f8b-804c31e355a2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:46 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "e8019104-55d6-44fd-865d-8eb58bfd1e45" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-correlation-request-id": [ - "a164b2aa-aec9-48e8-ab55-ad488799c8ad" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212750Z:a164b2aa-aec9-48e8-ab55-ad488799c8ad" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5715fe31-7eb3-4b3c-808a-857240111885" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-correlation-request-id": [ - "9702c24d-c1b6-4f92-924f-21b8de9015c4" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212753Z:9702c24d-c1b6-4f92-924f-21b8de9015c4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:53 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cf086166-1b85-4b60-a30c-08c2b5efaa87" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" - ], - "x-ms-correlation-request-id": [ - "a5cb8552-286b-4b99-a733-7015b584abb0" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212756Z:a5cb8552-286b-4b99-a733-7015b584abb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:56 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/providers/Microsoft.Storage/locations/westcentralus/asyncoperations/1f3cb8ab-f01a-4fdb-88e7-e377282efc8c?monitor=true&api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdGNlbnRyYWx1cy9hc3luY29wZXJhdGlvbnMvMWYzY2I4YWItZjAxYS00ZmRiLTg4ZTctZTM3NzI4MmVmYzhjP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "460f2c27-2089-4d70-98c4-4d0f85534e37" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" - ], - "x-ms-correlation-request-id": [ - "64dd4922-564f-4c2e-a853-a87c12afad71" - ], - "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212759Z:64dd4922-564f-4c2e-a853-a87c12afad71" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 12 Feb 2019 21:27:59 GMT" - ], - "Content-Length": [ - "1136" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest\",\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-12T21:20:57.9839169Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest?api-version=2018-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2NhMjRlYzgtOTliNS00YWE3LTlmZjYtNDg2ZTg4NmYzMDRjL3Jlc291cmNlR3JvdXBzL3N0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvc3RvcmFnZXBzdGVzdD9hcGktdmVyc2lvbj0yMDE4LTA3LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "83e586e8-9fcc-4d18-a985-9ba53d0dd647" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.26919.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.17763.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/9.1.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e858ec58-4079-49b7-805d-5a8b405036a6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11999" ], "x-ms-correlation-request-id": [ - "3cd840e5-f2f0-4a76-b403-9f1318ecf931" + "6da94205-d744-444b-8864-68beb298bfd5" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212800Z:3cd840e5-f2f0-4a76-b403-9f1318ecf931" + "UKSOUTH:20190215T010928Z:6da94205-d744-444b-8864-68beb298bfd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:27:59 GMT" + "Fri, 15 Feb 2019 01:09:27 GMT" ], "Content-Length": [ - "1136" + "1102" ], "Content-Type": [ "application/json" @@ -8202,17 +255,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest\",\r\n \"name\": \"storagepstest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-12T21:20:58.0620233Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-12T21:20:57.9839169Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://storagepstest.blob.core.windows.net/\",\r\n \"queue\": \"https://storagepstest.queue.core.windows.net/\",\r\n \"table\": \"https://storagepstest.table.core.windows.net/\",\r\n \"file\": \"https://storagepstest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westcentralus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"westus2\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"Storage\",\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206\",\r\n \"name\": \"psstorage8206\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": false,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-15T01:09:10.2383962Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-02-15T01:09:10.2383962Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-02-15T01:09:10.1134205Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://psstorage8206.blob.core.windows.net/\",\r\n \"queue\": \"https://psstorage8206.queue.core.windows.net/\",\r\n \"table\": \"https://psstorage8206.table.core.windows.net/\",\r\n \"file\": \"https://psstorage8206.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", - "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fpsstorage6997%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fpsstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnBzc3RvcmFnZTY5OTclMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cyUyRnBzc3RvcmFnZTgyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWN1cml0eS9hZHZhbmNlZFRocmVhdFByb3RlY3Rpb25TZXR0aW5ncy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTctMDgtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b3c7b6ba-a47e-478a-a0d9-a9157193463a" + "6f8ee78f-cb67-4f63-8e8f-cb2da68ce09a" ], "Accept-Language": [ "en-US" @@ -8244,13 +297,13 @@ "249" ], "x-ms-request-id": [ - "c74ddc9f-fd6a-46df-a938-c00ffa395582" + "40e5a66b-1592-4ea4-8630-a05a6b5d4487" ], "x-ms-correlation-request-id": [ - "c74ddc9f-fd6a-46df-a938-c00ffa395582" + "40e5a66b-1592-4ea4-8630-a05a6b5d4487" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212802Z:c74ddc9f-fd6a-46df-a938-c00ffa395582" + "UKSOUTH:20190215T010930Z:40e5a66b-1592-4ea4-8630-a05a6b5d4487" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8259,10 +312,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:28:02 GMT" + "Fri, 15 Feb 2019 01:09:29 GMT" ], "Content-Length": [ - "346" + "327" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8271,17 +324,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", - "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fpsstorage6997%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fpsstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnBzc3RvcmFnZTY5OTclMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cyUyRnBzc3RvcmFnZTgyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWN1cml0eS9hZHZhbmNlZFRocmVhdFByb3RlY3Rpb25TZXR0aW5ncy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTctMDgtMDEtcHJldmlldw==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "594c09a5-e305-42ed-9cc9-6af4fdedb805" + "8124f5d3-fef8-492d-9f49-c716608ebe44" ], "Accept-Language": [ "en-US" @@ -8313,13 +366,13 @@ "248" ], "x-ms-request-id": [ - "9ee655de-e90a-47e1-9e5f-328424e1ff9f" + "b2bd02c5-25d4-42e9-b65b-db3c8d4430c2" ], "x-ms-correlation-request-id": [ - "9ee655de-e90a-47e1-9e5f-328424e1ff9f" + "b2bd02c5-25d4-42e9-b65b-db3c8d4430c2" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212802Z:9ee655de-e90a-47e1-9e5f-328424e1ff9f" + "UKSOUTH:20190215T010930Z:b2bd02c5-25d4-42e9-b65b-db3c8d4430c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8328,10 +381,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:28:02 GMT" + "Fri, 15 Feb 2019 01:09:30 GMT" ], "Content-Length": [ - "347" + "328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8340,17 +393,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", - "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fpsstorage6997%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fpsstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnBzc3RvcmFnZTY5OTclMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cyUyRnBzc3RvcmFnZTgyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWN1cml0eS9hZHZhbmNlZFRocmVhdFByb3RlY3Rpb25TZXR0aW5ncy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTctMDgtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1f83c3e-e8c1-4139-ac20-4dd9347e2c95" + "097ad914-08c7-4ea6-8bc2-6822759b9a34" ], "Accept-Language": [ "en-US" @@ -8376,13 +429,13 @@ "749" ], "x-ms-request-id": [ - "e0f69527-58f2-4490-8c52-cdcba4b75270" + "bfc32dd2-6773-4a83-a158-61af0f0abc49" ], "x-ms-correlation-request-id": [ - "e0f69527-58f2-4490-8c52-cdcba4b75270" + "bfc32dd2-6773-4a83-a158-61af0f0abc49" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212802Z:e0f69527-58f2-4490-8c52-cdcba4b75270" + "UKSOUTH:20190215T010930Z:bfc32dd2-6773-4a83-a158-61af0f0abc49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8391,10 +444,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:28:02 GMT" + "Fri, 15 Feb 2019 01:09:29 GMT" ], "Content-Length": [ - "346" + "327" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8403,17 +456,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": true\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fstorage-atp-cmdlet-test-rgpstest%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fstoragepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", - "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnN0b3JhZ2UtYXRwLWNtZGxldC10ZXN0LXJncHN0ZXN0JTJGcHJvdmlkZXJzJTJGTWljcm9zb2Z0LlN0b3JhZ2UlMkZzdG9yYWdlQWNjb3VudHMlMkZzdG9yYWdlcHN0ZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuU2VjdXJpdHkvYWR2YW5jZWRUaHJlYXRQcm90ZWN0aW9uU2V0dGluZ3MvY3VycmVudD9hcGktdmVyc2lvbj0yMDE3LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/%2Fsubscriptions%2Fcca24ec8-99b5-4aa7-9ff6-486e886f304c%2FresourceGroups%2Fpsstorage6997%2Fproviders%2FMicrosoft.Storage%2FstorageAccounts%2Fpsstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current?api-version=2017-08-01-preview", + "EncodedRequestUri": "LyUyRnN1YnNjcmlwdGlvbnMlMkZjY2EyNGVjOC05OWI1LTRhYTctOWZmNi00ODZlODg2ZjMwNGMlMkZyZXNvdXJjZUdyb3VwcyUyRnBzc3RvcmFnZTY5OTclMkZwcm92aWRlcnMlMkZNaWNyb3NvZnQuU3RvcmFnZSUyRnN0b3JhZ2VBY2NvdW50cyUyRnBzc3RvcmFnZTgyMDYvcHJvdmlkZXJzL01pY3Jvc29mdC5TZWN1cml0eS9hZHZhbmNlZFRocmVhdFByb3RlY3Rpb25TZXR0aW5ncy9jdXJyZW50P2FwaS12ZXJzaW9uPTIwMTctMDgtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f3fd74e-e41d-408b-91c1-27dd4b264a80" + "1d2419d2-2890-432e-b33f-6e08c51e1aaf" ], "Accept-Language": [ "en-US" @@ -8439,13 +492,13 @@ "748" ], "x-ms-request-id": [ - "ad942f74-b958-4046-99a6-05cc1a815d09" + "e6f0844f-9930-436d-a127-b93209d4e8c7" ], "x-ms-correlation-request-id": [ - "ad942f74-b958-4046-99a6-05cc1a815d09" + "e6f0844f-9930-436d-a127-b93209d4e8c7" ], "x-ms-routing-request-id": [ - "UKSOUTH:20190212T212803Z:ad942f74-b958-4046-99a6-05cc1a815d09" + "UKSOUTH:20190215T010930Z:e6f0844f-9930-436d-a127-b93209d4e8c7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8454,10 +507,10 @@ "nosniff" ], "Date": [ - "Tue, 12 Feb 2019 21:28:02 GMT" + "Fri, 15 Feb 2019 01:09:30 GMT" ], "Content-Length": [ - "347" + "328" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8466,11 +519,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/storage-atp-cmdlet-test-rgpstest/providers/Microsoft.Storage/storageAccounts/storagepstest/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"isEnabled\": false\r\n },\r\n \"id\": \"/subscriptions/cca24ec8-99b5-4aa7-9ff6-486e886f304c/resourceGroups/psstorage6997/providers/Microsoft.Storage/storageAccounts/psstorage8206/providers/Microsoft.Security/advancedThreatProtectionSettings/current\",\r\n \"name\": \"current\",\r\n \"type\": \"Microsoft.Security/advancedThreatProtectionSettings\"\r\n}", "StatusCode": 200 } ], - "Names": {}, + "Names": { + "Test-AzSecurityThreatProtection-ResourceId": [ + "psstorage6997", + "psstorage8206" + ] + }, "Variables": { "SubscriptionId": "cca24ec8-99b5-4aa7-9ff6-486e886f304c" } diff --git a/src/Security/Security/help/Az.Security.md b/src/Security/Security/help/Az.Security.md index b554dfbdd18c..a7e946c9d73b 100644 --- a/src/Security/Security/help/Az.Security.md +++ b/src/Security/Security/help/Az.Security.md @@ -42,7 +42,7 @@ Gets the pricing tier data for Azure Security Center for a scope. Gets the security tasks that Azure Security Center recommends you to do in order to strengthen your security posture. ### [Get-AzSecurityThreatProtection](Get-AzSecurityThreatProtection.md) -{{Fill in the Synopsis}} +Gets the threat protection policy for a storage account. ### [Get-AzSecurityWorkspaceSetting](Get-AzSecurityWorkspaceSetting.md) Gets the configured security workspace settings on a subscription. @@ -72,7 +72,7 @@ Updates a security contact for a subscription. Sets the pricing of Azure Security Center tier for a scope. ### [Set-AzSecurityThreatProtection](Set-AzSecurityThreatProtection.md) -{{Fill in the Synopsis}} +Sets the threat protection policy for a storage account. ### [Set-AzSecurityWorkspaceSetting](Set-AzSecurityWorkspaceSetting.md) Updates the workspace settings for the subscription. diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index 10475d2112a9..65aac41f5599 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -18,7 +18,7 @@ Get-AzSecurityThreatProtection -ResourceId [-DefaultProfile Get-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" +PS C:\> Get-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" +``` +Example 1 Output: +```powershell +IsEnabled Id +--------- -- + False "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" ``` -This command gets the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +This command gets the threat protection policy for resource id "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". ## PARAMETERS diff --git a/src/Security/Security/help/Set-AzSecurityThreatProtection.md b/src/Security/Security/help/Set-AzSecurityThreatProtection.md index bbf0da598898..87cb25e94e32 100644 --- a/src/Security/Security/help/Set-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Set-AzSecurityThreatProtection.md @@ -8,7 +8,7 @@ schema: 2.0.0 # Set-AzSecurityThreatProtection ## SYNOPSIS -Sets the threat protection policy for a Microsoft Storage account. +Sets the threat protection policy for a storage account. ## SYNTAX @@ -33,15 +33,25 @@ To use this cmdlet, specify the *ResourceId* and *-Enable* OR *-Disable* paramet ### Example 1: Enable Advanced Threat Protection policy: ```powershell -PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Enable +PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Enable +``` +Example 1 Output: +```powershell +IsEnabled Id +--------- -- + True "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" ``` - This command enables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". ### Example 2: Disable Advanced Threat Protection policy: ```powershell -PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Disable +PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Disable +``` +Example 2 Output: +```powershell +IsEnabled Id +--------- -- + False "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" ``` - This command disables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". ## PARAMETERS From 5442cea3fde7e129ad551756c27c0296945e5d58 Mon Sep 17 00:00:00 2001 From: Shai Blum <43809680+shblum@users.noreply.github.com> Date: Fri, 15 Feb 2019 04:17:39 +0200 Subject: [PATCH 08/11] Update Get-AzSecurityThreatProtection.md --- src/Security/Security/help/Get-AzSecurityThreatProtection.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index 65aac41f5599..712ab0123940 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -27,9 +27,7 @@ To use this cmdlet, specify the *ResourceId* parameter. ### Example 1 ```powershell PS C:\> Get-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -``` -Example 1 Output: -```powershell + IsEnabled Id --------- -- False "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" From 680df5eccdd09f1ebefcb201a0f44e69dc71b27d Mon Sep 17 00:00:00 2001 From: Shai Blum <43809680+shblum@users.noreply.github.com> Date: Fri, 15 Feb 2019 04:18:55 +0200 Subject: [PATCH 09/11] Update Set-AzSecurityThreatProtection.md --- .../Security/help/Set-AzSecurityThreatProtection.md | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Security/Security/help/Set-AzSecurityThreatProtection.md b/src/Security/Security/help/Set-AzSecurityThreatProtection.md index 87cb25e94e32..8fe80e658612 100644 --- a/src/Security/Security/help/Set-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Set-AzSecurityThreatProtection.md @@ -34,9 +34,7 @@ To use this cmdlet, specify the *ResourceId* and *-Enable* OR *-Disable* paramet ### Example 1: Enable Advanced Threat Protection policy: ```powershell PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Enable -``` -Example 1 Output: -```powershell + IsEnabled Id --------- -- True "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" @@ -45,9 +43,7 @@ This command enables the threat protection policy for resource id "/subscription ### Example 2: Disable Advanced Threat Protection policy: ```powershell PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Disable -``` -Example 2 Output: -```powershell + IsEnabled Id --------- -- False "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" From 3979f207a4a96cd864da35b6c9283df1588939b7 Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Fri, 15 Feb 2019 10:36:20 -0800 Subject: [PATCH 10/11] Update Set-AzSecurityThreatProtection.md --- src/Security/Security/help/Set-AzSecurityThreatProtection.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Security/Security/help/Set-AzSecurityThreatProtection.md b/src/Security/Security/help/Set-AzSecurityThreatProtection.md index 8fe80e658612..5af0c967a6ac 100644 --- a/src/Security/Security/help/Set-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Set-AzSecurityThreatProtection.md @@ -39,7 +39,7 @@ IsEnabled Id --------- -- True "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" ``` -This command enables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +This command enables the threat protection policy for resource id "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". ### Example 2: Disable Advanced Threat Protection policy: ```powershell PS C:\> Set-AzSecurityThreatProtection -ResourceId "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" -Disable @@ -48,7 +48,7 @@ IsEnabled Id --------- -- False "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/" ``` -This command disables the threat protection policy for resource id "/subscriptions/cma24pc8-89b5-4aa7-9ff6-486e886c304a/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". +This command disables the threat protection policy for resource id "/subscriptions/xxxxxxx-xxxx-xxxx-xxxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Storage/storageAccounts/myStorageAccount/". ## PARAMETERS ### -DefaultProfile From 57a2dbd889e5579b2a35618ab38d5706e4a7b0e8 Mon Sep 17 00:00:00 2001 From: Maddie Clayton Date: Fri, 15 Feb 2019 10:36:42 -0800 Subject: [PATCH 11/11] Update Get-AzSecurityThreatProtection.md --- src/Security/Security/help/Get-AzSecurityThreatProtection.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Security/Security/help/Get-AzSecurityThreatProtection.md b/src/Security/Security/help/Get-AzSecurityThreatProtection.md index 712ab0123940..4e042fc2122f 100644 --- a/src/Security/Security/help/Get-AzSecurityThreatProtection.md +++ b/src/Security/Security/help/Get-AzSecurityThreatProtection.md @@ -18,7 +18,7 @@ Get-AzSecurityThreatProtection -ResourceId [-DefaultProfile