From fc4b53327fd59380f9c8bf286e107aa9d2efbf75 Mon Sep 17 00:00:00 2001 From: Lucas Yao Date: Wed, 2 Jun 2021 14:59:25 +0800 Subject: [PATCH 1/3] [ApplicationInsights] ApplicationInsightsLinkedStorageAccount CRUD command that complain missing resourcegroupName when using InputObject [#14848]. --- .../GetApplicationInsightsLinkedStorageAccount.cs | 2 +- .../NewApplicationInsightsLinkedStorageAccount.cs | 2 +- .../RemoveApplicationInsightsLinkedStorageAccount.cs | 2 +- .../UpdateApplicationInsightsLinkedStorageAccount.cs | 2 +- src/ApplicationInsights/ApplicationInsights/ChangeLog.md | 1 + 5 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/GetApplicationInsightsLinkedStorageAccount.cs b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/GetApplicationInsightsLinkedStorageAccount.cs index 72ea71cfdc28..e42ee2478dab 100644 --- a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/GetApplicationInsightsLinkedStorageAccount.cs +++ b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/GetApplicationInsightsLinkedStorageAccount.cs @@ -72,7 +72,7 @@ public override void ExecuteCmdlet() this.ResourceId = this.InputObject.Id; } - if (this.IsParameterBound(c => c.ResourceId)) + if (this.IsParameterBound(c => c.ResourceId) || !string.IsNullOrEmpty(this.ResourceId)) { ResourceIdentifier identifier = new ResourceIdentifier(this.ResourceId); this.ResourceGroupName = identifier.ResourceGroupName; diff --git a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/NewApplicationInsightsLinkedStorageAccount.cs b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/NewApplicationInsightsLinkedStorageAccount.cs index 6678082db77d..a0ac3d62c401 100644 --- a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/NewApplicationInsightsLinkedStorageAccount.cs +++ b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/NewApplicationInsightsLinkedStorageAccount.cs @@ -81,7 +81,7 @@ public override void ExecuteCmdlet() this.ResourceId = this.InputObject.Id; } - if (this.IsParameterBound(c => c.ResourceId)) + if (this.IsParameterBound(c => c.ResourceId) || !string.IsNullOrEmpty(this.ResourceId)) { ResourceIdentifier identifier = new ResourceIdentifier(this.ResourceId); this.ResourceGroupName = identifier.ResourceGroupName; diff --git a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/RemoveApplicationInsightsLinkedStorageAccount.cs b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/RemoveApplicationInsightsLinkedStorageAccount.cs index 0840046c2675..aad85bc1e89f 100644 --- a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/RemoveApplicationInsightsLinkedStorageAccount.cs +++ b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/RemoveApplicationInsightsLinkedStorageAccount.cs @@ -71,7 +71,7 @@ public override void ExecuteCmdlet() this.ResourceId = this.InputObject.Id; } - if (this.IsParameterBound(c => c.ResourceId)) + if (this.IsParameterBound(c => c.ResourceId) || !string.IsNullOrEmpty(this.ResourceId)) { ResourceIdentifier identifier = new ResourceIdentifier(this.ResourceId); this.ResourceGroupName = identifier.ResourceGroupName; diff --git a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/UpdateApplicationInsightsLinkedStorageAccount.cs b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/UpdateApplicationInsightsLinkedStorageAccount.cs index 5aff7d36bb31..f5ee7cf204dc 100644 --- a/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/UpdateApplicationInsightsLinkedStorageAccount.cs +++ b/src/ApplicationInsights/ApplicationInsights/ApplicationInsights/UpdateApplicationInsightsLinkedStorageAccount.cs @@ -80,7 +80,7 @@ public override void ExecuteCmdlet() this.ResourceId = this.InputObject.Id; } - if (this.IsParameterBound(c => c.ResourceId)) + if (this.IsParameterBound(c => c.ResourceId) || !string.IsNullOrEmpty(this.ResourceId)) { ResourceIdentifier identifier = new ResourceIdentifier(this.ResourceId); this.ResourceGroupName = identifier.ResourceGroupName; diff --git a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md index b1c6ed2ec939..13400e536147 100644 --- a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md +++ b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md @@ -18,6 +18,7 @@ - Additional information about change #1 --> ## Upcoming Release +* Fixed `Get-AzApplicationInsightsLinkedStorageAccount` `New-AzApplicationInsightsLinkedStorageAccount` `Update-AzApplicationInsightsLinkedStorageAccount` `Remove-AzApplicationInsightsLinkedStorageAccount` complain missing `ResourcegroupName` parameter when executing command with `InputObject` parameter [#14848] ## Version 1.1.0 * Added Parameters: `RetentionInDays` `PublicNetworkAccessForIngestion` `PublicNetworkAccessForQuery` for `New-AzApplicationInsights` From 320bf59be1a485338b675b4aa3d369207a602be6 Mon Sep 17 00:00:00 2001 From: Dingmeng Xue Date: Wed, 2 Jun 2021 17:33:31 +0800 Subject: [PATCH 2/3] Update ChangeLog.md --- src/ApplicationInsights/ApplicationInsights/ChangeLog.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md index 13400e536147..3139a9cb4a5d 100644 --- a/src/ApplicationInsights/ApplicationInsights/ChangeLog.md +++ b/src/ApplicationInsights/ApplicationInsights/ChangeLog.md @@ -18,7 +18,11 @@ - Additional information about change #1 --> ## Upcoming Release -* Fixed `Get-AzApplicationInsightsLinkedStorageAccount` `New-AzApplicationInsightsLinkedStorageAccount` `Update-AzApplicationInsightsLinkedStorageAccount` `Remove-AzApplicationInsightsLinkedStorageAccount` complain missing `ResourcegroupName` parameter when executing command with `InputObject` parameter [#14848] +* Fixed issue that `ResourcegroupName` is missed when executing below cmdlets with `InputObject` parameter [#14848] + * `Get-AzApplicationInsightsLinkedStorageAccount` + * `New-AzApplicationInsightsLinkedStorageAccount` + * `Update-AzApplicationInsightsLinkedStorageAccount` + * `Remove-AzApplicationInsightsLinkedStorageAccount` ## Version 1.1.0 * Added Parameters: `RetentionInDays` `PublicNetworkAccessForIngestion` `PublicNetworkAccessForQuery` for `New-AzApplicationInsights` From 89e4b39a50708e43d06009fe3d1bdd65af94d889 Mon Sep 17 00:00:00 2001 From: Lucas Yao Date: Tue, 8 Jun 2021 13:57:57 +0800 Subject: [PATCH 3/3] [ApplicationInsights] Add CRUD test cases of the LinkedStorageAccount for pipeline. --- .../LinkedStorageAccountTests.ps1 | 16 + .../TestLinkedStorageAccountCRUD.json | 8001 ++--------------- 2 files changed, 622 insertions(+), 7395 deletions(-) diff --git a/src/ApplicationInsights/ApplicationInsights.Test/ScenarioTests/LinkedStorageAccountTests.ps1 b/src/ApplicationInsights/ApplicationInsights.Test/ScenarioTests/LinkedStorageAccountTests.ps1 index e997b2eb49f4..99016c14514b 100644 --- a/src/ApplicationInsights/ApplicationInsights.Test/ScenarioTests/LinkedStorageAccountTests.ps1 +++ b/src/ApplicationInsights/ApplicationInsights.Test/ScenarioTests/LinkedStorageAccountTests.ps1 @@ -51,6 +51,22 @@ function Test-LinkedStorageAccountCRUD Remove-AzApplicationInsightsLinkedStorageAccount -ResourceGroupName $rgname -ComponentName $appName + # Test CRUD by pipeline. + New-AzApplicationInsightsLinkedStorageAccount -InputObject $app -LinkedStorageAccountResourceId $account1.Id + $linkedAccount = Get-AzApplicationInsightsLinkedStorageAccount -InputObject $app + + Assert-NotNull $linkedAccount + Assert-AreEqual $account1.Id $linkedAccount.linkedStorageAccount + Assert-AreEqual "serviceprofiler" $linkedAccount.Name + + Update-AzApplicationInsightsLinkedStorageAccount -InputObject $app -LinkedStorageAccountResourceId $account2.Id + $linkedAccount = Get-AzApplicationInsightsLinkedStorageAccount -InputObject $app + + Assert-NotNull $linkedAccount + Assert-AreEqual $account2.Id $linkedAccount.linkedStorageAccount + + Remove-AzApplicationInsightsLinkedStorageAccount -InputObject $app + Remove-AzStorageAccount -ResourceGroupName $rgname -Name $accountName1 -force Remove-AzStorageAccount -ResourceGroupName $rgname -Name $accountName2 -force diff --git a/src/ApplicationInsights/ApplicationInsights.Test/SessionRecords/Microsoft.Azure.Commands.ApplicationInsights.Test.ScenarioTests.LinkedStorageAccountTests/TestLinkedStorageAccountCRUD.json b/src/ApplicationInsights/ApplicationInsights.Test/SessionRecords/Microsoft.Azure.Commands.ApplicationInsights.Test.ScenarioTests.LinkedStorageAccountTests/TestLinkedStorageAccountCRUD.json index 98172dd19f19..49475577ea23 100644 --- a/src/ApplicationInsights/ApplicationInsights.Test/SessionRecords/Microsoft.Azure.Commands.ApplicationInsights.Test.ScenarioTests.LinkedStorageAccountTests/TestLinkedStorageAccountCRUD.json +++ b/src/ApplicationInsights/ApplicationInsights.Test/SessionRecords/Microsoft.Azure.Commands.ApplicationInsights.Test.ScenarioTests.LinkedStorageAccountTests/TestLinkedStorageAccountCRUD.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b73a92e0-9f96-46e8-9784-ab2587667564" + "92007858-f9fa-415d-af3f-60b42a53ffa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ], "Content-Type": [ "application/json; charset=utf-8" @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "11d397af-1ea5-492d-b6f1-867ce1e4c27e" + "f12294c8-f5af-475c-b258-44ba5d4164ed" ], "x-ms-correlation-request-id": [ - "11d397af-1ea5-492d-b6f1-867ce1e4c27e" + "f12294c8-f5af-475c-b258-44ba5d4164ed" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T090717Z:11d397af-1ea5-492d-b6f1-867ce1e4c27e" + "SOUTHEASTASIA:20210608T054403Z:f12294c8-f5af-475c-b258-44ba5d4164ed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:07:17 GMT" + "Tue, 08 Jun 2021 05:44:02 GMT" ], "Content-Length": [ "193" @@ -63,25 +63,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock\",\r\n \"name\": \"azps-test-group-mock\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed8b46ff-2a38-4bf9-849c-b86b836a605b" + "a844b8e8-5a6a-4fd5-bfa1-7f4c2db8a110" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, @@ -96,13 +96,13 @@ "gateway" ], "x-ms-request-id": [ - "1910a5c0-7601-4f3c-a788-8ba04d09e8ba" + "05cb7993-4d8e-4cc9-a488-8c5e3240e078" ], "x-ms-correlation-request-id": [ - "1910a5c0-7601-4f3c-a788-8ba04d09e8ba" + "05cb7993-4d8e-4cc9-a488-8c5e3240e078" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090719Z:1910a5c0-7601-4f3c-a788-8ba04d09e8ba" + "SOUTHEASTASIA:20210608T054403Z:05cb7993-4d8e-4cc9-a488-8c5e3240e078" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:07:19 GMT" + "Tue, 08 Jun 2021 05:44:03 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -120,28 +120,28 @@ "-1" ], "Content-Length": [ - "171" + "239" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Insights/components/azps-test-ai-mock' under resource group 'azps-test-group-mock' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Insights/components/azps-test-ai-mock' under resource group 'azps-test-group-mock' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"kind\": \"web\",\r\n \"properties\": {\r\n \"Application_Type\": \"web\",\r\n \"Request_Source\": \"AzurePowerShell\"\r\n },\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "feecc518-e488-404c-b5be-89d06dfdb119" + "a844b8e8-5a6a-4fd5-bfa1-7f4c2db8a110" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ], "Content-Type": [ @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "feecc518-e488-404c-b5be-89d06dfdb119" + "a844b8e8-5a6a-4fd5-bfa1-7f4c2db8a110" ], "X-Content-Type-Options": [ "nosniff" @@ -183,16 +183,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "34347c7a-2e26-4344-9795-53cba09698b3" + "c9cde1e0-6009-495a-8ff3-1a7e2129db17" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090732Z:34347c7a-2e26-4344-9795-53cba09698b3" + "SOUTHEASTASIA:20210608T054416Z:c9cde1e0-6009-495a-8ff3-1a7e2129db17" ], "Date": [ - "Thu, 30 Apr 2020 09:07:31 GMT" + "Tue, 08 Jun 2021 05:44:15 GMT" ], "Content-Length": [ - "906" + "1034" ], "Content-Type": [ "application/json; charset=utf-8" @@ -201,26 +201,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock\",\r\n \"name\": \"azps-test-ai-mock\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"0400371c-0000-0100-0000-5eaa954f0000\\\"\",\r\n \"properties\": {\r\n \"Ver\": \"v2\",\r\n \"ApplicationId\": \"azps-test-ai-mock\",\r\n \"AppId\": \"71a0b35e-7f9b-4d8e-953a-a6fd83351207\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"e6e9f916-3f46-4e96-9308-996bdeee30c1\",\r\n \"ConnectionString\": \"InstrumentationKey=e6e9f916-3f46-4e96-9308-996bdeee30c1\",\r\n \"Name\": \"azps-test-ai-mock\",\r\n \"CreationDate\": \"2020-04-30T17:07:27.6982332+08:00\",\r\n \"TenantId\": \"57947cb5-aadd-4b6c-9e8e-27f545bb7bf5\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock\",\r\n \"name\": \"azps-test-ai-mock\",\r\n \"type\": \"microsoft.insights/components\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"kind\": \"web\",\r\n \"etag\": \"\\\"d700f443-0000-0100-0000-60bf03ab0000\\\"\",\r\n \"properties\": {\r\n \"Ver\": \"v2\",\r\n \"ApplicationId\": \"azps-test-ai-mock\",\r\n \"AppId\": \"471e224b-0001-49fa-8312-7a2f374c8d9a\",\r\n \"Application_Type\": \"web\",\r\n \"Flow_Type\": null,\r\n \"Request_Source\": \"AzurePowerShell\",\r\n \"InstrumentationKey\": \"706be9f2-f8b3-4c9e-8ee7-bccb48e01297\",\r\n \"ConnectionString\": \"InstrumentationKey=706be9f2-f8b3-4c9e-8ee7-bccb48e01297;IngestionEndpoint=https://eastus-3.in.applicationinsights.azure.com/\",\r\n \"Name\": \"azps-test-ai-mock\",\r\n \"CreationDate\": \"2021-06-08T13:44:11.4527027+08:00\",\r\n \"TenantId\": \"9e223dbe-3399-4e19-88eb-0975f02ac87f\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"SamplingPercentage\": null,\r\n \"RetentionInDays\": 90,\r\n \"IngestionMode\": \"ApplicationInsights\",\r\n \"publicNetworkAccessForIngestion\": \"Enabled\",\r\n \"publicNetworkAccessForQuery\": \"Enabled\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"azpstestaccountamock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bbd18a1b-6b04-4953-aa57-4bf9700323e7" + "6245670c-47a0-488d-831c-5d6a95898571" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -237,7 +237,7 @@ "no-cache" ], "x-ms-request-id": [ - "49bfaa07-084d-4a15-bfd1-c15ebf0e87a4" + "cacef005-b0a0-451d-aff3-bacdd8d57151" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -246,19 +246,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "e741aaca-d906-4248-81d5-d05ff203e92a" + "7bed2c9c-8d74-47fc-8f5c-d571d3ee796c" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090733Z:e741aaca-d906-4248-81d5-d05ff203e92a" + "SOUTHEASTASIA:20210608T054417Z:7bed2c9c-8d74-47fc-8f5c-d571d3ee796c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:07:33 GMT" + "Tue, 08 Jun 2021 05:44:17 GMT" ], "Content-Length": [ "22" @@ -274,22 +274,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/checkNameAvailability?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"name\": \"azpstestaccountbmock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1ec4bdd3-0977-478a-bf2c-5bc7b08fba00" + "0462578f-c7ca-41df-ac2a-92edaa7b7665" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -306,7 +306,7 @@ "no-cache" ], "x-ms-request-id": [ - "fadd2ca8-ebec-4ccb-9c61-fa33284cf53f" + "540bcb06-289c-4d0e-976d-f8be6ce64670" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -315,19 +315,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11875" + "11994" ], "x-ms-correlation-request-id": [ - "920c2a93-a36e-4787-ad28-e1488cdc143a" + "7b1354a3-5dc2-4a16-a618-008965cc46f3" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091437Z:920c2a93-a36e-4787-ad28-e1488cdc143a" + "SOUTHEASTASIA:20210608T054443Z:7b1354a3-5dc2-4a16-a618-008965cc46f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:14:37 GMT" + "Tue, 08 Jun 2021 05:44:43 GMT" ], "Content-Length": [ "22" @@ -343,22 +343,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "291eabe2-17df-4136-b1e2-64c6929f6ce7" + "6245670c-47a0-488d-831c-5d6a95898571" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -375,34 +375,34 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/locations/eastus/asyncoperations/589d67a8-9a00-4bf3-8341-8c08ea6f9b42?monitor=true&api-version=2021-04-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18" + "589d67a8-9a00-4bf3-8341-8c08ea6f9b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], "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": [ - "f86f5369-0fb6-4eb2-a9df-4afeea2b5122" + "2a3cc8bf-4b8c-4aaa-a3cf-937799622955" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090741Z:f86f5369-0fb6-4eb2-a9df-4afeea2b5122" + "SOUTHEASTASIA:20210608T054425Z:2a3cc8bf-4b8c-4aaa-a3cf-937799622955" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:07:41 GMT" + "Tue, 08 Jun 2021 05:44:25 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -418,16 +418,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/locations/eastus/asyncoperations/589d67a8-9a00-4bf3-8341-8c08ea6f9b42?monitor=true&api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy81ODlkNjdhOC05YTAwLTRiZjMtODM0MS04YzA4ZWE2ZjliNDI/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6245670c-47a0-488d-831c-5d6a95898571" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -437,14 +440,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "c2bbe98d-808c-4999-8267-9e189a9d49a7" + "bb6f0147-28d2-4ffb-908c-46909dff14c5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -453,44 +450,50 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-correlation-request-id": [ - "7dbbc23e-e867-4251-a45c-1497ec67c231" + "243eea87-091e-4433-91f1-38fb628c8875" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090759Z:7dbbc23e-e867-4251-a45c-1497ec67c231" + "SOUTHEASTASIA:20210608T054442Z:243eea87-091e-4433-91f1-38fb628c8875" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:07:58 GMT" + "Tue, 08 Jun 2021 05:44:42 GMT" + ], + "Content-Length": [ + "1400" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\",\r\n \"name\": \"azpstestaccountamock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-06-08T05:44:23.5021773Z\",\r\n \"key2\": \"2021-06-08T05:44:23.5021773Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:23.5021773Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:23.5021773Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-06-08T05:44:23.3928074Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountamock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountamock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountamock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountamock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountamock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountamock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "6245670c-47a0-488d-831c-5d6a95898571" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -500,14 +503,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "adaf9c43-0a6d-43bf-9691-d793b11a71d3" + "9139c30e-d6cf-4d52-823c-19a1345391cc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -516,107 +513,56 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-correlation-request-id": [ - "f78c71b9-f83a-48d5-8c7b-1ad8614d7462" + "c49d4ff5-4eed-4f34-add9-01507bd120d2" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090802Z:f78c71b9-f83a-48d5-8c7b-1ad8614d7462" + "SOUTHEASTASIA:20210608T054442Z:c49d4ff5-4eed-4f34-add9-01507bd120d2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:08:01 GMT" + "Tue, 08 Jun 2021 05:44:42 GMT" + ], + "Content-Length": [ + "1400" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\",\r\n \"name\": \"azpstestaccountamock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-06-08T05:44:23.5021773Z\",\r\n \"key2\": \"2021-06-08T05:44:23.5021773Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:23.5021773Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:23.5021773Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-06-08T05:44:23.3928074Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountamock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountamock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountamock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountamock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountamock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountamock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\"\r\n}", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7a64eeb2-ab9b-46e6-a539-54f9d164a2b9" - ], - "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": [ - "03ce9224-2541-4840-a145-fd7b26aa1fcf" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090806Z:03ce9224-2541-4840-a145-fd7b26aa1fcf" + "x-ms-client-request-id": [ + "0462578f-c7ca-41df-ac2a-92edaa7b7665" ], - "X-Content-Type-Options": [ - "nosniff" + "Accept-Language": [ + "en-US" ], - "Date": [ - "Thu, 30 Apr 2020 09:08:06 GMT" + "User-Agent": [ + "FxVersion/4.6.30015.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ], "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" + "application/json; charset=utf-8" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "98" ] }, "ResponseHeaders": { @@ -627,13 +573,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/locations/eastus/asyncoperations/8e545f66-e632-4291-9829-a61848d161bf?monitor=true&api-version=2021-04-01" ], "Retry-After": [ - "3" + "17" ], "x-ms-request-id": [ - "e985822c-8713-4935-bd73-a286cd49e782" + "8e545f66-e632-4291-9829-a61848d161bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -641,20 +587,20 @@ "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-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-correlation-request-id": [ - "bb1621aa-3f93-4b80-9e4e-d5faa1f0cb1f" + "573df561-68b9-4775-9911-1c73acda4ae4" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090809Z:bb1621aa-3f93-4b80-9e4e-d5faa1f0cb1f" + "SOUTHEASTASIA:20210608T054447Z:573df561-68b9-4775-9911-1c73acda4ae4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:08:09 GMT" + "Tue, 08 Jun 2021 05:44:47 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -670,16 +616,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/providers/Microsoft.Storage/locations/eastus/asyncoperations/8e545f66-e632-4291-9829-a61848d161bf?monitor=true&api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy84ZTU0NWY2Ni1lNjMyLTQyOTEtOTgyOS1hNjE4NDhkMTYxYmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDQtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0462578f-c7ca-41df-ac2a-92edaa7b7665" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -689,14 +638,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "84c7574d-e575-48cc-beb9-6502f4f05055" + "a4b81183-ed9f-4b0a-9b70-892cdfec091e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -705,44 +648,50 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" ], "x-ms-correlation-request-id": [ - "3b3c08c5-fd5e-409f-afca-8bfe4d0420c6" + "407de51c-f83c-408e-b41b-c240ad4865f4" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090813Z:3b3c08c5-fd5e-409f-afca-8bfe4d0420c6" + "SOUTHEASTASIA:20210608T054504Z:407de51c-f83c-408e-b41b-c240ad4865f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:08:13 GMT" + "Tue, 08 Jun 2021 05:45:04 GMT" + ], + "Content-Length": [ + "1400" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\",\r\n \"name\": \"azpstestaccountbmock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-06-08T05:44:45.9275641Z\",\r\n \"key2\": \"2021-06-08T05:44:45.9275641Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:45.9275641Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:45.9275641Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-06-08T05:44:45.8337719Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountbmock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountbmock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountbmock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountbmock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountbmock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountbmock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "0462578f-c7ca-41df-ac2a-92edaa7b7665" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -752,14 +701,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], "x-ms-request-id": [ - "b7e470af-f5f2-4b40-b929-3bbdf4eb483e" + "1016f7fc-d472-4aa8-af23-874cdb5b8bd8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,44 +711,50 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11992" ], "x-ms-correlation-request-id": [ - "706c006c-4ca6-4bbc-a808-8ab17108f15a" + "92c1a070-581a-42ec-885e-07bde1ab765e" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090816Z:706c006c-4ca6-4bbc-a808-8ab17108f15a" + "SOUTHEASTASIA:20210608T054505Z:92c1a070-581a-42ec-885e-07bde1ab765e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:08:16 GMT" + "Tue, 08 Jun 2021 05:45:04 GMT" + ], + "Content-Length": [ + "1400" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\",\r\n \"name\": \"azpstestaccountbmock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-06-08T05:44:45.9275641Z\",\r\n \"key2\": \"2021-06-08T05:44:45.9275641Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:45.9275641Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-06-08T05:44:45.9275641Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-06-08T05:44:45.8337719Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountbmock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountbmock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountbmock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountbmock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountbmock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountbmock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "bb95f9da-1576-4f0d-bcaa-64553f66ab4a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -815,123 +764,69 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" ], - "x-ms-request-id": [ - "c8b42152-7f82-4fee-a180-ef8a4b0e373f" + "Access-Control-Expose-Headers": [ + "Request-Context" ], "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": [ - "db6e5b67-f101-43ed-a273-5c833e68aecf" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090820Z:db6e5b67-f101-43ed-a273-5c833e68aecf" - ], "X-Content-Type-Options": [ "nosniff" ], - "Date": [ - "Thu, 30 Apr 2020 09:08:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" + "Server": [ + "Microsoft-IIS/10.0" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" + "X-Powered-By": [ + "ASP.NET" ], - "Retry-After": [ - "3" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" ], "x-ms-request-id": [ - "9d7cc8d8-bbfc-41bb-9dde-e33218335886" - ], - "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" + "e4dd22ab-a930-4a10-aced-fea3908977d0" ], "x-ms-correlation-request-id": [ - "016780d3-079e-46b5-82ec-8b763ba75ff4" + "e4dd22ab-a930-4a10-aced-fea3908977d0" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090823Z:016780d3-079e-46b5-82ec-8b763ba75ff4" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054505Z:e4dd22ab-a930-4a10-aced-fea3908977d0" ], "Date": [ - "Thu, 30 Apr 2020 09:08:23 GMT" + "Tue, 08 Jun 2021 05:45:04 GMT" + ], + "Content-Length": [ + "4" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "null", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "cbaacc7e-8e4e-4cb8-bff8-10a6c93372f4" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -941,6807 +836,69 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" ], - "x-ms-request-id": [ - "3d5c74c5-4f2c-45e2-b938-792d87e3f2c3" + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11997" + ], + "x-ms-request-id": [ + "b2286e14-dbb8-4f0d-b817-9a7ca72bf036" ], "x-ms-correlation-request-id": [ - "97c420b6-d169-4aba-bbda-b96a10c6b941" + "b2286e14-dbb8-4f0d-b817-9a7ca72bf036" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090826Z:97c420b6-d169-4aba-bbda-b96a10c6b941" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054513Z:b2286e14-dbb8-4f0d-b817-9a7ca72bf036" ], "Date": [ - "Thu, 30 Apr 2020 09:08:26 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6d1289d2-00d6-4359-9d49-d4573efec76b" - ], - "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": [ - "333ab9b8-c8fb-4545-be19-c0c920935743" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090830Z:333ab9b8-c8fb-4545-be19-c0c920935743" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:30 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6117e2d6-333b-4691-851e-2c2fab4747a9" - ], - "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": [ - "72fe2168-6ee6-457e-b9ee-a190d75af3d0" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090833Z:72fe2168-6ee6-457e-b9ee-a190d75af3d0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8419d7ba-5775-4026-b887-68f7cf9a4976" - ], - "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": [ - "d9f4a625-2ba9-4009-909a-7d8ba2a24e73" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090837Z:d9f4a625-2ba9-4009-909a-7d8ba2a24e73" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d3738b95-b525-4304-8c83-d5bc001013dc" - ], - "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": [ - "c874a21a-84a5-4ad8-816e-8e2be5dab42d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090840Z:c874a21a-84a5-4ad8-816e-8e2be5dab42d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "dba396ff-6783-45d7-91f0-8a269750dd70" - ], - "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": [ - "14535011-ef8c-401a-85da-4f101a4bd728" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090844Z:14535011-ef8c-401a-85da-4f101a4bd728" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:43 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ca8ac9aa-27ac-4ebb-b0b4-fb516c7c0715" - ], - "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": [ - "b61df64a-38cb-4497-8f8a-cb2d14c8c9bc" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090847Z:b61df64a-38cb-4497-8f8a-cb2d14c8c9bc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "da9291a1-fddc-4fab-af79-95aff535d695" - ], - "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": [ - "5a53b6d8-054d-4a0d-b860-78243260d43f" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090851Z:5a53b6d8-054d-4a0d-b860-78243260d43f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "46c33f31-2eaa-4cb9-94bb-7d6ce147a02a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "13cc453c-9433-4e5c-b2c3-6c7848b1fce5" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090854Z:13cc453c-9433-4e5c-b2c3-6c7848b1fce5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:54 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "382dcb7d-b1d0-4de0-9a02-9ff67d3eac61" - ], - "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": [ - "52e07a87-d46e-4d0d-a855-097598947f21" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090857Z:52e07a87-d46e-4d0d-a855-097598947f21" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:08:57 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "e5b01f6d-0955-4dbd-812f-375d22abb082" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "61a1be94-63da-4b21-9ba1-64577054f704" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090901Z:61a1be94-63da-4b21-9ba1-64577054f704" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:00 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "87681a3b-8307-472f-a024-657b40335d0e" - ], - "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": [ - "f24bf958-acf3-4479-b44a-c832d5aa181e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090905Z:f24bf958-acf3-4479-b44a-c832d5aa181e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:04 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6ccb67f0-7574-4385-a4fc-9da36c87a44d" - ], - "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": [ - "f2fab0a2-190d-4ec1-a4ab-bcf3eca32702" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090908Z:f2fab0a2-190d-4ec1-a4ab-bcf3eca32702" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:08 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a7b38847-40c6-4d47-9f0b-07a3c7898251" - ], - "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": [ - "a0b4d86e-054e-4616-8cdd-9dd62f229eae" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090912Z:a0b4d86e-054e-4616-8cdd-9dd62f229eae" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:11 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a13ad4bb-5c56-4429-a6ff-c2833d2cbb85" - ], - "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": [ - "541352b8-b2c4-48ea-8440-b1e96fcbcdca" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090915Z:541352b8-b2c4-48ea-8440-b1e96fcbcdca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:15 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4a8b3ab6-432c-405d-886d-9f28fc42abe5" - ], - "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": [ - "11968" - ], - "x-ms-correlation-request-id": [ - "1e0bd253-dc7f-4a2f-809a-faee890f793e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090919Z:1e0bd253-dc7f-4a2f-809a-faee890f793e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:18 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "94c9a136-e3c1-4f18-a990-612a5f749ef9" - ], - "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": [ - "da8f0bec-6273-4ced-bc38-fd1695aa86f6" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090922Z:da8f0bec-6273-4ced-bc38-fd1695aa86f6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:21 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6b687cdb-f792-4bfc-8a8d-c8b983c5d4d5" - ], - "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": [ - "85bb0a5b-b7e7-462c-89b2-b42fba46abf7" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090926Z:85bb0a5b-b7e7-462c-89b2-b42fba46abf7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:25 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3736efc5-a39f-4928-8466-b468c3298330" - ], - "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": [ - "5f793843-4e7c-4a43-9846-91c5e17541e2" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090929Z:5f793843-4e7c-4a43-9846-91c5e17541e2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:28 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "75c6a6a7-236f-45c0-af1b-16a7fac8138c" - ], - "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": [ - "1e6a10e8-16a3-49b5-8758-bfff2c8a1f76" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090932Z:1e6a10e8-16a3-49b5-8758-bfff2c8a1f76" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:32 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5c56d31b-aebe-452d-8974-4089c4de0e47" - ], - "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": [ - "8ea15619-5db0-44f9-bf40-3054f27a9a92" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090936Z:8ea15619-5db0-44f9-bf40-3054f27a9a92" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:35 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "e10cab19-38e2-455a-a5f2-196778b6befb" - ], - "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": [ - "ed7cceca-da4c-4e5c-97cb-61470381debd" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090939Z:ed7cceca-da4c-4e5c-97cb-61470381debd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:38 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "832c12b8-e1f9-4b45-9868-0e917d00143f" - ], - "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": [ - "62857b52-b432-4ee1-b3d9-0c8ec4548f1d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090943Z:62857b52-b432-4ee1-b3d9-0c8ec4548f1d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5c8534a2-0dae-4b5b-b568-32f50600eac0" - ], - "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": [ - "d7d20d2a-17cf-4541-bf76-665457b3bb95" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090946Z:d7d20d2a-17cf-4541-bf76-665457b3bb95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2169d590-d6d5-4361-962c-9d511be85b50" - ], - "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": [ - "c4bb67c6-5e47-4cf4-b7bc-3c26a6682f2a" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090950Z:c4bb67c6-5e47-4cf4-b7bc-3c26a6682f2a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:49 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "deb593f8-88e9-4a27-a353-9b08b639d5b0" - ], - "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": [ - "8c4ac061-96e3-4aa4-bd0f-17ce5ad9b318" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090953Z:8c4ac061-96e3-4aa4-bd0f-17ce5ad9b318" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:53 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "338189eb-bde4-427e-bdfb-ba19898a4e12" - ], - "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": [ - "fce916ad-f1b7-4ff1-a454-6a3edd2cf8f9" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T090957Z:fce916ad-f1b7-4ff1-a454-6a3edd2cf8f9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:09:56 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3c263bae-7448-47b3-bd72-2482f4913deb" - ], - "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": [ - "74670a1e-a552-429f-881f-6a4e91055bf8" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091000Z:74670a1e-a552-429f-881f-6a4e91055bf8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:00 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b49408c4-27e0-4d68-bcb9-a3f10c9f2b2d" - ], - "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": [ - "a321ecdd-cb5f-412a-a75b-da1491db9797" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091003Z:a321ecdd-cb5f-412a-a75b-da1491db9797" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:03 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d2de6d27-4499-47fd-aaa4-4d0bf98083d4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "97f44e82-5ca1-4584-b9e6-208b0bb514ff" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091007Z:97f44e82-5ca1-4584-b9e6-208b0bb514ff" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:07 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "04d19281-6cf0-4509-b262-0cca71bb858a" - ], - "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": [ - "4a52c9a4-ba41-49bf-aa5e-ae84e87ae1ed" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091010Z:4a52c9a4-ba41-49bf-aa5e-ae84e87ae1ed" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:10 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9e95ffee-e5c3-4aec-b948-9dcc51f71954" - ], - "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": [ - "914dde59-30c5-4b86-bfca-21d73052672c" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091014Z:914dde59-30c5-4b86-bfca-21d73052672c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:14 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0026c53e-b448-41c3-b94d-0327dfb8d8e9" - ], - "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": [ - "9ad83531-4356-40af-940a-ff3dc8417456" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091017Z:9ad83531-4356-40af-940a-ff3dc8417456" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:17 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "04c57d61-7ca0-4dd5-8deb-0146fb30629b" - ], - "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": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "ee64920c-c853-47ff-8385-5a1b4500504b" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091021Z:ee64920c-c853-47ff-8385-5a1b4500504b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:20 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a71e8ba4-a6b6-44d3-8fb0-2860bd67ce9e" - ], - "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": [ - "4aa48954-4e67-4991-87be-876ff3085f3d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091024Z:4aa48954-4e67-4991-87be-876ff3085f3d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:24 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cfaf13e3-4d61-457a-8318-7f24ce8de6a4" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "1d8d9e39-e4c8-44e8-9453-e12465e3224e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091028Z:1d8d9e39-e4c8-44e8-9453-e12465e3224e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:27 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f9dcaeb3-817e-496e-8b5a-f81ece399359" - ], - "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": [ - "8a98b27c-9337-4030-8ef8-f41efb526020" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091032Z:8a98b27c-9337-4030-8ef8-f41efb526020" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:31 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2eb84926-ec60-4dae-9cb3-d3e16b5e030c" - ], - "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": [ - "ae44dcc7-287c-4cb0-bcc6-f6c914c67479" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091035Z:ae44dcc7-287c-4cb0-bcc6-f6c914c67479" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:35 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9c244ffd-44f6-459b-a151-fec9bcc895ea" - ], - "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": [ - "990a0e62-b2b4-4de3-bdd9-fb08fb57c82c" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091038Z:990a0e62-b2b4-4de3-bdd9-fb08fb57c82c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:38 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ea6ce16e-08f7-4057-b9db-5c654aa5dd3c" - ], - "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": [ - "6991cd24-8220-4c21-a471-970494e07d61" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091042Z:6991cd24-8220-4c21-a471-970494e07d61" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "98b18ed5-a671-4139-9e04-abff25fdea64" - ], - "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": [ - "d09e489d-0cd9-4928-806f-9e048de13249" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091045Z:d09e489d-0cd9-4928-806f-9e048de13249" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3076e4e9-da96-423f-8e28-5781ed97760e" - ], - "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": [ - "a4550bea-3f95-4422-8f4f-652f63e1347e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091049Z:a4550bea-3f95-4422-8f4f-652f63e1347e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:48 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4224f4fa-b545-409d-b431-d6be82729c2f" - ], - "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": [ - "cf14b194-5bed-43ac-9ec0-2e22a1816d46" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091052Z:cf14b194-5bed-43ac-9ec0-2e22a1816d46" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:52 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8ef0e8bc-69d9-43d8-bd15-b7be80f380b5" - ], - "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": [ - "65603877-6c5b-4972-8c95-d532c7e45e4d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091056Z:65603877-6c5b-4972-8c95-d532c7e45e4d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:55 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "71e7c2e1-0a28-46d4-a294-3481239c3012" - ], - "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": [ - "c9dff0b8-a8e5-4392-a714-f46d69190adb" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091059Z:c9dff0b8-a8e5-4392-a714-f46d69190adb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:10:59 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "23069079-18f4-4a93-ba01-f635987c73ca" - ], - "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": [ - "0a6c3c8c-98b3-4207-a2f3-8d0e5c08af4b" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091103Z:0a6c3c8c-98b3-4207-a2f3-8d0e5c08af4b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:02 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2809e196-bf69-4d58-adb6-8d533dd289d0" - ], - "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": [ - "12f33114-e576-4cd4-95be-40595bce3ebb" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091106Z:12f33114-e576-4cd4-95be-40595bce3ebb" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:05 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ea9ab685-e95d-420a-a73d-075278d5f2a7" - ], - "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": [ - "a7880c73-fa61-46fd-8f9c-845f777e0e45" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091109Z:a7880c73-fa61-46fd-8f9c-845f777e0e45" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:09 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d4a63816-e834-4eb0-800a-5396629fb507" - ], - "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": [ - "3a38905e-f631-4e9e-a868-318791255fa4" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091113Z:3a38905e-f631-4e9e-a868-318791255fa4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:12 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "1aa19186-4e95-4972-a5c2-f60adbe5817e" - ], - "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": [ - "eae78976-a82d-4672-8630-f813f1ad1718" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091116Z:eae78976-a82d-4672-8630-f813f1ad1718" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:16 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "20ff04fb-fb68-46d0-b18f-7667f34cedec" - ], - "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": [ - "0f2d953c-8368-42c3-97f4-ac2c10f27b76" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091120Z:0f2d953c-8368-42c3-97f4-ac2c10f27b76" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "31f7d89d-5180-49b3-a327-14c7ca3c47a7" - ], - "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": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "1345119d-29e5-46a3-9a34-119b3bec8c72" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091123Z:1345119d-29e5-46a3-9a34-119b3bec8c72" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:23 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "93006f00-ea07-4bee-a552-d011c089f4d1" - ], - "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": [ - "4cac73ae-906a-4893-8197-d1c66a3401f1" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091127Z:4cac73ae-906a-4893-8197-d1c66a3401f1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:26 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "da89f686-3b9e-4d64-848d-2a5dcecada67" - ], - "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": [ - "5a9cc475-7e6c-4491-93bc-676f569f69a3" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091130Z:5a9cc475-7e6c-4491-93bc-676f569f69a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:29 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "48e5027d-2938-460c-966a-07f6e72e3688" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "089e72fd-a93e-4752-8232-504aafd9f7d8" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091134Z:089e72fd-a93e-4752-8232-504aafd9f7d8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b3ddcaa6-87ff-46de-833d-9d4affd2854f" - ], - "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": [ - "4b4beaef-222d-4a73-862a-e3555598b34c" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091138Z:4b4beaef-222d-4a73-862a-e3555598b34c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:37 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4febd8fe-c2be-41a6-8bc5-90f37a3b8161" - ], - "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": [ - "368ebb83-6eaf-47ec-a1d7-5686895c74bf" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091141Z:368ebb83-6eaf-47ec-a1d7-5686895c74bf" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7baa9c2d-d520-4c62-bdae-e89cc321021e" - ], - "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": [ - "316e8f0f-ffce-4fbe-975f-b95413c1e74f" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091144Z:316e8f0f-ffce-4fbe-975f-b95413c1e74f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:44 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ce7afaa2-c98a-45d5-8ee8-52bf79b47499" - ], - "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": [ - "22d5cb31-0210-4300-910c-5af76fcd940c" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091148Z:22d5cb31-0210-4300-910c-5af76fcd940c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "3ddc0ae9-9091-4da9-850a-7f78316d4a5a" - ], - "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": [ - "2543f994-1c6a-4468-92cf-7ff34fb46176" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091151Z:2543f994-1c6a-4468-92cf-7ff34fb46176" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4536c31f-4a6b-4ef9-88a4-788aa313afa6" - ], - "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": [ - "90441728-d6e7-4b24-9c12-fcf95a465dcc" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091155Z:90441728-d6e7-4b24-9c12-fcf95a465dcc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:54 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "efd2a259-a623-4e96-b319-b057d4b418f6" - ], - "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": [ - "077d4e93-26e6-4fe0-bb06-248898f56072" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091158Z:077d4e93-26e6-4fe0-bb06-248898f56072" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:11:57 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5fec552f-5d07-4d12-bfb3-2c4d72e51866" - ], - "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": [ - "aea75fd7-f307-43ca-a969-362926fc74c5" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091202Z:aea75fd7-f307-43ca-a969-362926fc74c5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:01 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "c6e8d9de-f019-4e44-8abd-96298bf88722" - ], - "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": [ - "2868e8db-5d68-498a-a96f-1dd4ec98fcde" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091205Z:2868e8db-5d68-498a-a96f-1dd4ec98fcde" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:04 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "6dcf58d9-4d0d-4cf6-9ddc-dd94d190cb8d" - ], - "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": [ - "bcd3400a-1bd7-42c3-8401-6c0bae53f6f8" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091209Z:bcd3400a-1bd7-42c3-8401-6c0bae53f6f8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:08 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "7e1d937b-d72c-4dc3-8dd8-40aaa4ab7fbe" - ], - "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": [ - "2bba7ffe-67c7-4e1d-afe0-cb56740b94cc" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091212Z:2bba7ffe-67c7-4e1d-afe0-cb56740b94cc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:11 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "153d2dd3-a166-4354-b3c3-90252cfbfae5" - ], - "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": [ - "301adfc1-b5e9-4c60-92d4-a228ffabab8a" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091215Z:301adfc1-b5e9-4c60-92d4-a228ffabab8a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:15 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "df8629c0-c01f-427c-8a01-70631ba8ca87" - ], - "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": [ - "fd32d7f3-b48a-4bad-978a-7b466ae55b5d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091219Z:fd32d7f3-b48a-4bad-978a-7b466ae55b5d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "84360b76-c65c-4724-b6e5-6a5d5323b22d" - ], - "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": [ - "2a892666-cea3-4321-9b51-0f6569f01b36" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091222Z:2a892666-cea3-4321-9b51-0f6569f01b36" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:22 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a5703e65-58b8-4f35-b795-1d9f0225ed6a" - ], - "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": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "8c8fcb20-205b-4215-a3fc-2a89d3601f3e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091226Z:8c8fcb20-205b-4215-a3fc-2a89d3601f3e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:26 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "abee7904-e824-48dc-b805-105e1017dc16" - ], - "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": [ - "b9335b0d-5bab-4d8f-8b34-a0faef40c380" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091230Z:b9335b0d-5bab-4d8f-8b34-a0faef40c380" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:30 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "297ffba7-6bc1-41a4-9a0e-e375bd4b4dfe" - ], - "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": [ - "d758e943-d3eb-41b6-ba66-b74416969298" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091233Z:d758e943-d3eb-41b6-ba66-b74416969298" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:33 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "711ee9d5-dafa-4a89-b071-72cc15a68402" - ], - "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": [ - "4fa887b6-2ead-4517-a253-b7cf63d7cd2f" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091237Z:4fa887b6-2ead-4517-a253-b7cf63d7cd2f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:36 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9a97bcae-b310-4630-baf9-1c70221026fc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], - "x-ms-correlation-request-id": [ - "6cb37209-03f0-4c12-8987-f36c48811fa5" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091240Z:6cb37209-03f0-4c12-8987-f36c48811fa5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:40 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a839aa29-8745-4feb-aabb-649b99d44425" - ], - "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": [ - "907ef354-aed2-458b-84af-0b298e04edb1" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091244Z:907ef354-aed2-458b-84af-0b298e04edb1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:43 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f17ee09f-e3ea-4060-8657-74dcd1d590a1" - ], - "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": [ - "02b09e19-d7b3-49bc-8dd9-96890b406368" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091247Z:02b09e19-d7b3-49bc-8dd9-96890b406368" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:47 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "742ac173-29e1-4380-81a6-411cbdc38da8" - ], - "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": [ - "0d024b9f-90e6-4a72-84af-be496e31aa38" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091250Z:0d024b9f-90e6-4a72-84af-be496e31aa38" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:50 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2a8aaeb1-bfe7-437d-bbff-b9bc48ec832d" - ], - "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": [ - "f73f20f0-5946-47f5-a6b1-2a199dbbb6d2" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091254Z:f73f20f0-5946-47f5-a6b1-2a199dbbb6d2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:54 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "aaee1000-4372-4352-9810-d0062bdbd436" - ], - "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": [ - "d20173d2-a05b-43f1-b99d-89fc6a622f95" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091257Z:d20173d2-a05b-43f1-b99d-89fc6a622f95" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:12:57 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "f61e2e9e-e3d7-4261-b28d-2e4bfbdcc3ce" - ], - "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": [ - "b134d25e-8b79-4216-b2ca-d8c434a6c52b" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091301Z:b134d25e-8b79-4216-b2ca-d8c434a6c52b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:00 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5578d4ff-4d21-4047-a0c4-e6cf80328b4e" - ], - "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": [ - "c02ad297-72a3-4503-811c-d512e183bdda" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091304Z:c02ad297-72a3-4503-811c-d512e183bdda" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:04 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "02a20173-d72d-43bc-bc55-a896caf4b90f" - ], - "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": [ - "4ca9f18f-05b3-4804-866e-379c14567f65" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091308Z:4ca9f18f-05b3-4804-866e-379c14567f65" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:07 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d5ae55aa-df7d-4dc5-95d6-ba336e72dbe3" - ], - "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": [ - "ecaf4e14-21c8-49cf-936c-2e5e002666ea" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091311Z:ecaf4e14-21c8-49cf-936c-2e5e002666ea" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:11 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "45398a13-b98e-485c-81c3-4fb5a0b78eaa" - ], - "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": [ - "78c523a7-f116-4a22-8721-774e78ef8b34" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091315Z:78c523a7-f116-4a22-8721-774e78ef8b34" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:14 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cb8d55ae-1303-4aa1-beda-f2658fdb2045" - ], - "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": [ - "907b8b78-6fd5-4d0e-a289-1f0feed0e4c9" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091318Z:907b8b78-6fd5-4d0e-a289-1f0feed0e4c9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:18 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "77d5654e-1082-4996-93ba-5b06a32382c7" - ], - "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": [ - "c27fb314-f521-418f-9fba-30ee3ce74937" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091321Z:c27fb314-f521-418f-9fba-30ee3ce74937" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:21 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "fdb259b7-6c9c-4847-b3cf-3318a77c2cfe" - ], - "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": [ - "13c9931a-5f6f-43eb-8f3c-1dbbbf7d15d6" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091325Z:13c9931a-5f6f-43eb-8f3c-1dbbbf7d15d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:24 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0a84410f-6d31-4624-935b-96f867e3a3a6" - ], - "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": [ - "c25dbb69-3fb0-47df-bb8d-cd25f331cae4" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091328Z:c25dbb69-3fb0-47df-bb8d-cd25f331cae4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:28 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "41849226-76ff-4106-bd0e-6abdffe8935a" - ], - "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": [ - "00f86519-9c52-4c07-9855-f58ca4bc96b8" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091332Z:00f86519-9c52-4c07-9855-f58ca4bc96b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:32 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2a003665-de2a-44bc-8a95-df7fe5cde741" - ], - "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": [ - "b2d56eeb-af29-4179-a734-276a18f54870" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091336Z:b2d56eeb-af29-4179-a734-276a18f54870" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:35 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "cebeb12d-17b2-455b-af68-8ee8e5b9cea9" - ], - "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": [ - "714afebb-1dcf-4dfd-bf5d-117efe07a4df" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091339Z:714afebb-1dcf-4dfd-bf5d-117efe07a4df" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:38 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "4239550d-3047-4120-a21d-ba64d088e9c2" - ], - "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": [ - "2f0476e2-91b6-4ec8-9166-ef23ab3be827" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091343Z:2f0476e2-91b6-4ec8-9166-ef23ab3be827" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:42 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a9c66249-3e90-40ed-a7fe-e80b6ea7c986" - ], - "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": [ - "1842cd9b-8c6e-4dc4-942e-babab7d40888" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091346Z:1842cd9b-8c6e-4dc4-942e-babab7d40888" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:45 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "a8a8321a-48a2-4a0a-96a7-84e6e898e3a5" - ], - "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": [ - "71656d4e-362a-4a54-a72b-1f75ca381ee4" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091349Z:71656d4e-362a-4a54-a72b-1f75ca381ee4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:49 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9798b5da-ce8e-42ad-8e35-c78b500bdf30" - ], - "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": [ - "d28df4c6-60c6-4cc3-bebd-0aac1cde44e5" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091353Z:d28df4c6-60c6-4cc3-bebd-0aac1cde44e5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:52 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "696fb78b-abd8-44d6-b46c-b9d933f6e64f" - ], - "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": [ - "94548944-0f68-4a2c-8a27-2f495c800164" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091356Z:94548944-0f68-4a2c-8a27-2f495c800164" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:56 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "d6e407db-1721-48f1-9fb8-8e7e70583653" - ], - "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": [ - "d610eb6f-a265-49bd-ab33-ddd5f116bbec" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091400Z:d610eb6f-a265-49bd-ab33-ddd5f116bbec" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:13:59 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "0bc8d318-bea7-4080-9fe4-1017a0a8330e" - ], - "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": [ - "a7a1f37a-9026-4efd-ac6b-459742667f64" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091403Z:a7a1f37a-9026-4efd-ac6b-459742667f64" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:02 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "5f64e10e-32a5-4341-b981-bc3d4d6c21a9" - ], - "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": [ - "d07cf41a-d5fe-4dd5-88c4-5f7e3f601bf4" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091407Z:d07cf41a-d5fe-4dd5-88c4-5f7e3f601bf4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:06 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "bb408e1c-f97c-47cb-a665-6d33ce7b410e" - ], - "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": [ - "54d428b8-e202-40d0-a974-f5e13c570443" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091410Z:54d428b8-e202-40d0-a974-f5e13c570443" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:09 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "ab25a13d-efbb-4670-a4f6-5df74ce7c4ac" - ], - "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": [ - "e22518cd-3534-410c-8b31-ea9771f74f9e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091414Z:e22518cd-3534-410c-8b31-ea9771f74f9e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:13 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "2824fe63-3b99-44aa-9c45-374a506d893d" - ], - "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": [ - "9c77b2e6-3197-4de1-82b7-ab48d14d256d" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091417Z:9c77b2e6-3197-4de1-82b7-ab48d14d256d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:16 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "558899de-8025-4744-9519-7f5a72543ec3" - ], - "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": [ - "a85885d1-23f9-47ba-ba44-0425ff05a0fe" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091420Z:a85885d1-23f9-47ba-ba44-0425ff05a0fe" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:19 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "8b83eef3-ec02-4cde-8e04-861014f79df8" - ], - "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": [ - "98680ff3-af91-4255-a77c-6338ee8c1d19" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091424Z:98680ff3-af91-4255-a77c-6338ee8c1d19" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:24 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "b3878783-772d-4540-8a57-2e77d2edc115" - ], - "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": [ - "5d932f9e-cbd5-4528-aaf3-003c200d384e" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091428Z:5d932f9e-cbd5-4528-aaf3-003c200d384e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:28 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" - ], - "x-ms-request-id": [ - "9bf86bf7-10d2-4528-9c72-e88e4532f1ea" - ], - "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": [ - "11878" - ], - "x-ms-correlation-request-id": [ - "551c2233-df59-4d07-b639-9f799cc64ce5" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091432Z:551c2233-df59-4d07-b639-9f799cc64ce5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:32 GMT" - ], - "Content-Type": [ - "text/plain; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/2dc2c6f6-860a-46b0-9ef4-3e03a1a90c18?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8yZGMyYzZmNi04NjBhLTQ2YjAtOWVmNC0zZTAzYTFhOTBjMTg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "89b5714d-5a43-4e47-acc0-50968555df5c" - ], - "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": [ - "077d7fcd-ad31-4cc1-9cdf-c0c9ec5dac32" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091435Z:077d7fcd-ad31-4cc1-9cdf-c0c9ec5dac32" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:35 GMT" - ], - "Content-Length": [ - "1304" - ], - "Content-Type": [ - "application/json" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\",\r\n \"name\": \"azpstestaccountamock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:07:41.4045298Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:07:41.4045298Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-30T09:07:41.3107795Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountamock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountamock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountamock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountamock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountamock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountamock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "1aed924e-c6b7-4865-b560-0b8439ceaf19" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.28008.02", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5abf2158-975b-4054-b21d-ed7b347c4ed0" - ], - "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": [ - "bc7e134f-cf87-47a4-9707-d0f292c32d01" - ], - "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091436Z:bc7e134f-cf87-47a4-9707-d0f292c32d01" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Thu, 30 Apr 2020 09:14:36 GMT" + "Tue, 08 Jun 2021 05:45:12 GMT" ], "Content-Length": [ - "1304" + "504" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\",\r\n \"name\": \"azpstestaccountamock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:07:41.4045298Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:07:41.4045298Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-30T09:07:41.3107795Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountamock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountamock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountamock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountamock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountamock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountamock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus\"\r\n}", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0bfebac7-6c40-457f-b89a-78d01e1d35b5" + "f9d4cc05-d437-48c3-8b95-098882ca4c09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "98" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -7751,60 +908,69 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "17" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" ], - "x-ms-request-id": [ - "071ad113-1dde-4ce0-9579-2eda949439b7" + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "9ebbb60c-f7b8-4eb8-ad70-2cb3043b229f" ], "x-ms-correlation-request-id": [ - "22c70ee8-75a2-4404-a53d-001ca417bd2e" + "9ebbb60c-f7b8-4eb8-ad70-2cb3043b229f" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091443Z:22c70ee8-75a2-4404-a53d-001ca417bd2e" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054514Z:9ebbb60c-f7b8-4eb8-ad70-2cb3043b229f" ], "Date": [ - "Thu, 30 Apr 2020 09:14:42 GMT" + "Tue, 08 Jun 2021 05:45:13 GMT" + ], + "Content-Length": [ + "504" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wNzFhZDExMy0xZGRlLTRjZTAtOTU3OS0yZWRhOTQ5NDM5Yjc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "a53540fc-fc1a-4fbb-8a85-b2b7f023610c" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -7814,60 +980,69 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" ], - "x-ms-request-id": [ - "d53e5555-3811-41d4-a4e6-866df1a09a77" + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11874" + "11995" + ], + "x-ms-request-id": [ + "ace7c8a1-d4c8-446a-8739-f63261ff2080" ], "x-ms-correlation-request-id": [ - "d308482a-8625-4ee8-bab3-33654b9ae1f2" + "ace7c8a1-d4c8-446a-8739-f63261ff2080" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091500Z:d308482a-8625-4ee8-bab3-33654b9ae1f2" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054518Z:ace7c8a1-d4c8-446a-8739-f63261ff2080" ], "Date": [ - "Thu, 30 Apr 2020 09:15:00 GMT" + "Tue, 08 Jun 2021 05:45:17 GMT" + ], + "Content-Length": [ + "504" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wNzFhZDExMy0xZGRlLTRjZTAtOTU3OS0yZWRhOTQ5NDM5Yjc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b733e04f-17dc-4b08-a46c-5422e1f5c44e" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -7877,60 +1052,69 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01" - ], - "Retry-After": [ - "3" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" ], - "x-ms-request-id": [ - "976ba220-d99a-4f6c-8db9-5883698d931f" + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11873" + "11994" + ], + "x-ms-request-id": [ + "e47d44f9-8828-46d2-920a-32c7e9820ed6" ], "x-ms-correlation-request-id": [ - "744299ca-5e23-4e0e-afc0-691cb18ec85b" + "e47d44f9-8828-46d2-920a-32c7e9820ed6" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091504Z:744299ca-5e23-4e0e-afc0-691cb18ec85b" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054521Z:e47d44f9-8828-46d2-920a-32c7e9820ed6" ], "Date": [ - "Thu, 30 Apr 2020 09:15:03 GMT" + "Tue, 08 Jun 2021 05:45:21 GMT" + ], + "Content-Length": [ + "4" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json; charset=utf-8" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "null", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/providers/Microsoft.Storage/locations/eastus/asyncoperations/071ad113-1dde-4ce0-9579-2eda949439b7?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzL2FzeW5jb3BlcmF0aW9ucy8wNzFhZDExMy0xZGRlLTRjZTAtOTU3OS0yZWRhOTQ5NDM5Yjc/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "14f66f0f-2f25-4b4f-b4a7-facf13b4b301" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -7940,60 +1124,69 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "65681796-7087-4aef-834d-34f495264740" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11872" + "11993" + ], + "x-ms-request-id": [ + "ea2d65e9-2d61-4959-bfa8-13651106d95e" ], "x-ms-correlation-request-id": [ - "80e25dea-eab9-4b51-b412-2d9bb994711b" + "ea2d65e9-2d61-4959-bfa8-13651106d95e" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091507Z:80e25dea-eab9-4b51-b412-2d9bb994711b" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054526Z:ea2d65e9-2d61-4959-bfa8-13651106d95e" ], "Date": [ - "Thu, 30 Apr 2020 09:15:07 GMT" + "Tue, 08 Jun 2021 05:45:26 GMT" ], "Content-Length": [ - "1304" + "504" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\",\r\n \"name\": \"azpstestaccountbmock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:14:42.6666457Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:14:42.6666457Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-30T09:14:42.5885002Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountbmock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountbmock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountbmock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountbmock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountbmock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountbmock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1564c3b-8b63-476a-9f09-a7a660703d3e" + "32df6cfb-b061-4a51-af32-be4e15403e74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, "ResponseHeaders": { @@ -8003,59 +1196,68 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "ef9126f4-2ff5-4b98-9b76-810c7e3fb06a" + "Request-Context": [ + "appId=cid-v1:7f83c1fe-8c94-4d55-9337-4ddc696f61ed" + ], + "Access-Control-Expose-Headers": [ + "Request-Context" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "X-Content-Type-Options": [ + "nosniff" + ], "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "Microsoft-IIS/10.0" + ], + "X-Powered-By": [ + "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11871" + "11992" + ], + "x-ms-request-id": [ + "81b29013-75b4-412c-8425-ef9f1099b9ab" ], "x-ms-correlation-request-id": [ - "7a7013f3-6af8-4c1b-8dbe-1c6533421035" + "81b29013-75b4-412c-8425-ef9f1099b9ab" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091508Z:7a7013f3-6af8-4c1b-8dbe-1c6533421035" - ], - "X-Content-Type-Options": [ - "nosniff" + "SOUTHEASTASIA:20210608T054526Z:81b29013-75b4-412c-8425-ef9f1099b9ab" ], "Date": [ - "Thu, 30 Apr 2020 09:15:07 GMT" + "Tue, 08 Jun 2021 05:45:26 GMT" ], "Content-Length": [ - "1304" + "504" ], "Content-Type": [ - "application/json" + "application/json; charset=utf-8" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\",\r\n \"name\": \"azpstestaccountbmock\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:14:42.6666457Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-30T09:14:42.6666457Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-30T09:14:42.5885002Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://azpstestaccountbmock.dfs.core.windows.net/\",\r\n \"web\": \"https://azpstestaccountbmock.z13.web.core.windows.net/\",\r\n \"blob\": \"https://azpstestaccountbmock.blob.core.windows.net/\",\r\n \"queue\": \"https://azpstestaccountbmock.queue.core.windows.net/\",\r\n \"table\": \"https://azpstestaccountbmock.table.core.windows.net/\",\r\n \"file\": \"https://azpstestaccountbmock.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2333791c-4e88-4add-a878-c4f24e27bbff" + "2ef10fb5-c241-48d9-bd6b-14f526c0714e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, @@ -8085,22 +1287,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11991" ], "x-ms-request-id": [ - "c0f58337-00b8-4bf2-8bb9-8d6f3d451694" + "bef7e70c-caef-4b81-bac3-5150309b262f" ], "x-ms-correlation-request-id": [ - "c0f58337-00b8-4bf2-8bb9-8d6f3d451694" + "bef7e70c-caef-4b81-bac3-5150309b262f" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091509Z:c0f58337-00b8-4bf2-8bb9-8d6f3d451694" + "SOUTHEASTASIA:20210608T054531Z:bef7e70c-caef-4b81-bac3-5150309b262f" ], "Date": [ - "Thu, 30 Apr 2020 09:15:09 GMT" + "Tue, 08 Jun 2021 05:45:31 GMT" ], "Content-Length": [ - "4" + "504" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8109,26 +1311,32 @@ "-1" ] }, - "ResponseBody": "null", - "StatusCode": 404 + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5bb674d1-7458-4a01-8ee7-270f9f5aa04f" + "bb95f9da-1576-4f0d-bcaa-64553f66ab4a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" ] }, "ResponseHeaders": { @@ -8156,20 +1364,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" ], "x-ms-request-id": [ - "0e93afa4-8af7-434f-ab95-ebce54822bc1" + "1eb0ea3e-9e4b-4a4a-851f-0c487ba89916" ], "x-ms-correlation-request-id": [ - "0e93afa4-8af7-434f-ab95-ebce54822bc1" + "1eb0ea3e-9e4b-4a4a-851f-0c487ba89916" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091511Z:0e93afa4-8af7-434f-ab95-ebce54822bc1" + "SOUTHEASTASIA:20210608T054513Z:1eb0ea3e-9e4b-4a4a-851f-0c487ba89916" ], "Date": [ - "Thu, 30 Apr 2020 09:15:11 GMT" + "Tue, 08 Jun 2021 05:45:12 GMT" ], "Content-Length": [ "504" @@ -8181,26 +1389,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "016bcb23-ca95-4b9f-80d1-3c91ee5a596f" + "b733e04f-17dc-4b08-a46c-5422e1f5c44e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" ] }, "ResponseHeaders": { @@ -8228,20 +1442,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" ], "x-ms-request-id": [ - "5127ece2-7b45-4f51-8bcb-47b61ec071f0" + "a8f2bf83-f18e-473b-af94-2acfb4357b3b" ], "x-ms-correlation-request-id": [ - "5127ece2-7b45-4f51-8bcb-47b61ec071f0" + "a8f2bf83-f18e-473b-af94-2acfb4357b3b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091511Z:5127ece2-7b45-4f51-8bcb-47b61ec071f0" + "SOUTHEASTASIA:20210608T054526Z:a8f2bf83-f18e-473b-af94-2acfb4357b3b" ], "Date": [ - "Thu, 30 Apr 2020 09:15:11 GMT" + "Tue, 08 Jun 2021 05:45:26 GMT" ], "Content-Length": [ "504" @@ -8253,26 +1467,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "25b4afea-7d2b-4143-b18b-7ecf0bff5c74" + "f9d4cc05-d437-48c3-8b95-098882ca4c09" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "212" ] }, "ResponseHeaders": { @@ -8300,20 +1520,20 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" ], "x-ms-request-id": [ - "a9dc743b-b63c-49c0-8ab6-7867bcf4a3c7" + "d397bdef-87df-4ab3-ba08-9a5d346c2dc6" ], "x-ms-correlation-request-id": [ - "a9dc743b-b63c-49c0-8ab6-7867bcf4a3c7" + "d397bdef-87df-4ab3-ba08-9a5d346c2dc6" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091513Z:a9dc743b-b63c-49c0-8ab6-7867bcf4a3c7" + "SOUTHEASTASIA:20210608T054518Z:d397bdef-87df-4ab3-ba08-9a5d346c2dc6" ], "Date": [ - "Thu, 30 Apr 2020 09:15:12 GMT" + "Tue, 08 Jun 2021 05:45:17 GMT" ], "Content-Length": [ "504" @@ -8325,25 +1545,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f857e1bd-1d12-4dc1-80c0-c8130df93d75" + "32df6cfb-b061-4a51-af32-be4e15403e74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ], "Content-Type": [ @@ -8379,19 +1599,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-request-id": [ - "1c889368-41bd-4207-8020-666b1bca9727" + "0c4d7cdd-f4e2-4a40-9bbe-c223f7672561" ], "x-ms-correlation-request-id": [ - "1c889368-41bd-4207-8020-666b1bca9727" + "0c4d7cdd-f4e2-4a40-9bbe-c223f7672561" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091511Z:1c889368-41bd-4207-8020-666b1bca9727" + "SOUTHEASTASIA:20210608T054531Z:0c4d7cdd-f4e2-4a40-9bbe-c223f7672561" ], "Date": [ - "Thu, 30 Apr 2020 09:15:10 GMT" + "Tue, 08 Jun 2021 05:45:31 GMT" ], "Content-Length": [ "504" @@ -8403,32 +1623,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", - "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestMethod": "DELETE", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c75b8f37-e67b-4bd1-9de6-07031622fedf" + "ccd3bf29-5fe2-4382-8b2c-79638fa4f58c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "212" ] }, "ResponseHeaders": { @@ -8456,50 +1670,47 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "ddf4cb65-8ffe-434e-9204-13a0e87f65db" + "8f888ad7-df95-4b0d-a10f-52b5e4d7cd20" ], "x-ms-correlation-request-id": [ - "ddf4cb65-8ffe-434e-9204-13a0e87f65db" + "8f888ad7-df95-4b0d-a10f-52b5e4d7cd20" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091513Z:ddf4cb65-8ffe-434e-9204-13a0e87f65db" + "SOUTHEASTASIA:20210608T054521Z:8f888ad7-df95-4b0d-a10f-52b5e4d7cd20" ], "Date": [ - "Thu, 30 Apr 2020 09:15:12 GMT" - ], - "Content-Length": [ - "504" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "Tue, 08 Jun 2021 05:45:21 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedstorageaccounts/serviceprofiler\",\r\n \"name\": \"serviceprofiler\",\r\n \"type\": \"microsoft.insights/components/linkedstorageaccounts\",\r\n \"properties\": {\r\n \"linkedStorageAccount\": \"/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock\"\r\n }\r\n}", + "ResponseBody": "", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/microsoft.insights/components/azps-test-ai-mock/linkedStorageAccounts/ServiceProfiler?api-version=2020-03-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9taWNyb3NvZnQuaW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jay9saW5rZWRTdG9yYWdlQWNjb3VudHMvU2VydmljZVByb2ZpbGVyP2FwaS12ZXJzaW9uPTIwMjAtMDMtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7318c20-b58e-4adf-a1a1-22b63b4eaa2e" + "7e0e3daa-5bce-4cf4-882e-3a3a76fb5c32" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, @@ -8529,19 +1740,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "0ddbfd0c-87a3-43ac-8e57-d4d3027152fa" + "a3943189-bb11-4fc5-ab53-be4cee41bbcb" ], "x-ms-correlation-request-id": [ - "0ddbfd0c-87a3-43ac-8e57-d4d3027152fa" + "a3943189-bb11-4fc5-ab53-be4cee41bbcb" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091514Z:0ddbfd0c-87a3-43ac-8e57-d4d3027152fa" + "SOUTHEASTASIA:20210608T054533Z:a3943189-bb11-4fc5-ab53-be4cee41bbcb" ], "Date": [ - "Thu, 30 Apr 2020 09:15:13 GMT" + "Tue, 08 Jun 2021 05:45:33 GMT" ], "Expires": [ "-1" @@ -8554,22 +1765,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountamock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50YW1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ffd0f07c-53c1-4513-a0eb-d3201e496ebd" + "1d951354-c6d4-4083-b722-11bf9e72e3f4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -8580,7 +1791,7 @@ "no-cache" ], "x-ms-request-id": [ - "d87429a9-ae91-4f3a-b24a-89fff7eb6d62" + "5a52784d-8b8a-4ae4-9fe9-77a44a87afe7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8589,19 +1800,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14999" ], "x-ms-correlation-request-id": [ - "edd1c75d-2d92-44f7-aa54-267d7de40f86" + "1a48e871-0c44-4201-ab29-b2a7bcaa02e7" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091518Z:edd1c75d-2d92-44f7-aa54-267d7de40f86" + "SOUTHEASTASIA:20210608T054541Z:1a48e871-0c44-4201-ab29-b2a7bcaa02e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:15:17 GMT" + "Tue, 08 Jun 2021 05:45:40 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -8617,22 +1828,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Storage/storageAccounts/azpstestaccountbmock?api-version=2021-04-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9zdG9yYWdlQWNjb3VudHMvYXpwc3Rlc3RhY2NvdW50Ym1vY2s/YXBpLXZlcnNpb249MjAyMS0wNC0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a157bc04-2e8a-477a-8dfc-8218347bf967" + "80f8705e-9491-40fb-bf74-17a0080bf3cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/22.0.0.0" ] }, "ResponseHeaders": { @@ -8643,7 +1854,7 @@ "no-cache" ], "x-ms-request-id": [ - "afbded0e-1759-457c-9e2c-ac0d473a0fc8" + "25ea6d2b-0682-47bf-814b-38c564e3e317" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8652,19 +1863,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "14998" ], "x-ms-correlation-request-id": [ - "544826fd-f90d-4d89-8f35-03d49406e6c9" + "5c4923cd-9969-46e5-a245-2da78c3e409b" ], "x-ms-routing-request-id": [ - "AUSTRALIAEAST:20200430T091521Z:544826fd-f90d-4d89-8f35-03d49406e6c9" + "SOUTHEASTASIA:20210608T054545Z:5c4923cd-9969-46e5-a245-2da78c3e409b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:15:21 GMT" + "Tue, 08 Jun 2021 05:45:45 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -8680,21 +1891,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/azps-test-group-mock/providers/Microsoft.Insights/components/azps-test-ai-mock?api-version=2018-05-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlR3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrL3Byb3ZpZGVycy9NaWNyb3NvZnQuSW5zaWdodHMvY29tcG9uZW50cy9henBzLXRlc3QtYWktbW9jaz9hcGktdmVyc2lvbj0yMDE4LTA1LTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31c50cf0-743b-4ca2-af95-3fcaf5a2385e" + "e6ee2b01-10da-482c-9a1e-9453df0ee695" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", + "OSVersion/Microsoft.Windows.10.0.19043.", "Microsoft.Azure.Management.ApplicationInsights.Management.ApplicationInsightsManagementClient/0.3.0.0" ] }, @@ -8706,7 +1917,7 @@ "no-cache" ], "x-ms-request-id": [ - "31c50cf0-743b-4ca2-af95-3fcaf5a2385e" + "e6ee2b01-10da-482c-9a1e-9453df0ee695" ], "X-Content-Type-Options": [ "nosniff" @@ -8727,16 +1938,16 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "04a6d9c9-b394-43ea-89f5-258c1989f35e" + "64e67ab9-afac-42f3-88b5-eb470d230d8b" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091529Z:04a6d9c9-b394-43ea-89f5-258c1989f35e" + "SOUTHEASTASIA:20210608T054557Z:64e67ab9-afac-42f3-88b5-eb470d230d8b" ], "Date": [ - "Thu, 30 Apr 2020 09:15:29 GMT" + "Tue, 08 Jun 2021 05:45:57 GMT" ], "Expires": [ "-1" @@ -8749,22 +1960,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27008727-267c-4323-9b76-54578a95e43f" + "120c369e-3caa-400e-9f2c-69dade84c4cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -8775,7 +1986,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -8784,13 +1995,13 @@ "14999" ], "x-ms-request-id": [ - "0ff3e7b9-34e6-406b-9268-bf6cd66a6abb" + "c5b1c949-d4f1-468b-a21d-7dcf8dcf2636" ], "x-ms-correlation-request-id": [ - "0ff3e7b9-34e6-406b-9268-bf6cd66a6abb" + "c5b1c949-d4f1-468b-a21d-7dcf8dcf2636" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091534Z:0ff3e7b9-34e6-406b-9268-bf6cd66a6abb" + "SOUTHEASTASIA:20210608T054601Z:c5b1c949-d4f1-468b-a21d-7dcf8dcf2636" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8799,7 +2010,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:15:33 GMT" + "Tue, 08 Jun 2021 05:46:01 GMT" ], "Expires": [ "-1" @@ -8812,22 +2023,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/resourcegroups/azps-test-group-mock?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/azps-test-group-mock?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL3Jlc291cmNlZ3JvdXBzL2F6cHMtdGVzdC1ncm91cC1tb2NrP2FwaS12ZXJzaW9uPTIwMTYtMDktMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40832987-db04-484d-8637-364cf60569cb" + "c8f30e6f-732f-4445-babe-ffd936a0af43" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -8844,13 +2055,13 @@ "14998" ], "x-ms-request-id": [ - "790ed8cf-e61d-45ce-b91e-48a73ea0ca23" + "3d2fc8c0-0ebb-49ec-9a37-6f0fff537199" ], "x-ms-correlation-request-id": [ - "790ed8cf-e61d-45ce-b91e-48a73ea0ca23" + "3d2fc8c0-0ebb-49ec-9a37-6f0fff537199" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091621Z:790ed8cf-e61d-45ce-b91e-48a73ea0ca23" + "SOUTHEASTASIA:20210608T054649Z:3d2fc8c0-0ebb-49ec-9a37-6f0fff537199" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8859,7 +2070,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:16:21 GMT" + "Tue, 08 Jun 2021 05:46:48 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -8875,16 +2086,16 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -8895,7 +2106,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -8904,13 +2115,13 @@ "11999" ], "x-ms-request-id": [ - "145dccbe-9de0-4f9a-82a6-dba9657e80e3" + "40906815-ea86-4371-9091-9efe8cc44346" ], "x-ms-correlation-request-id": [ - "145dccbe-9de0-4f9a-82a6-dba9657e80e3" + "40906815-ea86-4371-9091-9efe8cc44346" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091550Z:145dccbe-9de0-4f9a-82a6-dba9657e80e3" + "SOUTHEASTASIA:20210608T054617Z:40906815-ea86-4371-9091-9efe8cc44346" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8919,7 +2130,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:15:49 GMT" + "Tue, 08 Jun 2021 05:46:17 GMT" ], "Expires": [ "-1" @@ -8932,16 +2143,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -8952,7 +2163,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" + "https://management.azure.com/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -8961,13 +2172,13 @@ "11998" ], "x-ms-request-id": [ - "f0261441-354e-42ad-afc7-936797e638dc" + "404e941a-6da3-4aeb-a957-eb24361766e9" ], "x-ms-correlation-request-id": [ - "f0261441-354e-42ad-afc7-936797e638dc" + "404e941a-6da3-4aeb-a957-eb24361766e9" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091605Z:f0261441-354e-42ad-afc7-936797e638dc" + "SOUTHEASTASIA:20210608T054632Z:404e941a-6da3-4aeb-a957-eb24361766e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -8976,7 +2187,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:16:05 GMT" + "Tue, 08 Jun 2021 05:46:32 GMT" ], "Expires": [ "-1" @@ -8989,16 +2200,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -9012,13 +2223,13 @@ "11997" ], "x-ms-request-id": [ - "bf689a30-df99-46fb-9bc6-c9f46ac721f5" + "e049d098-6f8b-4f05-a644-d45daad97ba8" ], "x-ms-correlation-request-id": [ - "bf689a30-df99-46fb-9bc6-c9f46ac721f5" + "e049d098-6f8b-4f05-a644-d45daad97ba8" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091620Z:bf689a30-df99-46fb-9bc6-c9f46ac721f5" + "SOUTHEASTASIA:20210608T054648Z:e049d098-6f8b-4f05-a644-d45daad97ba8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9027,7 +2238,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:16:20 GMT" + "Tue, 08 Jun 2021 05:46:48 GMT" ], "Expires": [ "-1" @@ -9040,16 +2251,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/57947cb5-aadd-4b6c-9e8e-27f545bb7bf5/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTc5NDdjYjUtYWFkZC00YjZjLTllOGUtMjdmNTQ1YmI3YmY1L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1BWlBTOjJEVEVTVDoyREdST1VQOjJETU9DSy1FQVNUVVMiLCJqb2JMb2NhdGlvbiI6ImVhc3R1cyJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOWUyMjNkYmUtMzM5OS00ZTE5LTg4ZWItMDk3NWYwMmFjODdmL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFCV2xCVE9qSkVWRVZUVkRveVJFZFNUMVZRT2pKRVRVOURTeTFGUVZOVVZWTWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3lKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28008.02", + "FxVersion/4.6.30015.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19043.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.34" ] }, "ResponseHeaders": { @@ -9063,13 +2274,13 @@ "11996" ], "x-ms-request-id": [ - "08852bfe-0c61-4d49-928f-0cee85344b7d" + "fb999f56-fb1e-45ce-9707-690a4cd27aee" ], "x-ms-correlation-request-id": [ - "08852bfe-0c61-4d49-928f-0cee85344b7d" + "fb999f56-fb1e-45ce-9707-690a4cd27aee" ], "x-ms-routing-request-id": [ - "JAPANEAST:20200430T091621Z:08852bfe-0c61-4d49-928f-0cee85344b7d" + "SOUTHEASTASIA:20210608T054648Z:fb999f56-fb1e-45ce-9707-690a4cd27aee" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -9078,7 +2289,7 @@ "nosniff" ], "Date": [ - "Thu, 30 Apr 2020 09:16:21 GMT" + "Tue, 08 Jun 2021 05:46:48 GMT" ], "Expires": [ "-1" @@ -9093,6 +2304,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "57947cb5-aadd-4b6c-9e8e-27f545bb7bf5" + "SubscriptionId": "9e223dbe-3399-4e19-88eb-0975f02ac87f" } } \ No newline at end of file