diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index b4f0d6a706c3..57de240c7c4b 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -721,44 +721,44 @@ function Test-StorageBlobORS $stoname1 = 'sto' + $rgname + 'src'; $stoname2 = 'sto' + $rgname + 'dest'; $stotype = 'Standard_LRS'; - $loc = Get-ProviderLocation_Canary ResourceManagement; + $loc = Get-ProviderLocation ResourceManagement; $kind = 'StorageV2' Write-Verbose "RGName: $rgname | Loc: $loc" New-AzResourceGroup -Name $rgname -Location $loc; - $loc = Get-ProviderLocation_Canary ResourceManagement; + $loc = Get-ProviderLocation ResourceManagement; $sto1 = New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname1 -Location $loc -Type $stotype -Kind $kind $sto2 = New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname2 -Location $loc -Type $stotype -Kind $kind - Assert-Null $sto1.AllowCrossTenantReplication - Assert-Null $sto2.AllowCrossTenantReplication + Assert-AreEqual $false $sto1.AllowCrossTenantReplication + Assert-AreEqual $false $sto2.AllowCrossTenantReplication - # Enable Blob Enable Changefeed and versioning - Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 -EnableChangeFeed $true -IsVersioningEnabled $true - Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 -EnableChangeFeed $true -IsVersioningEnabled $true - $property1 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 - Assert-AreEqual $true $property1.ChangeFeed.Enabled - Assert-AreEqual $true $property1.IsVersioningEnabled - $property2 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 - Assert-AreEqual $true $property2.ChangeFeed.Enabled - Assert-AreEqual $true $property2.IsVersioningEnabled - - # create containers - Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src - Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname2 | New-AzRmStorageContainer -name dest - Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src1 + # Enable Blob Enable Changefeed and versioning + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 -EnableChangeFeed $true -IsVersioningEnabled $true + Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 -EnableChangeFeed $true -IsVersioningEnabled $true + $property1 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname1 + Assert-AreEqual $true $property1.ChangeFeed.Enabled + Assert-AreEqual $true $property1.IsVersioningEnabled + $property2 = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname2 + Assert-AreEqual $true $property2.ChangeFeed.Enabled + Assert-AreEqual $true $property2.IsVersioningEnabled + + # create containers + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname2 | New-AzRmStorageContainer -name dest + Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname1 | New-AzRmStorageContainer -name src1 Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname2 | New-AzRmStorageContainer -name dest1 - + # create rules $minCreationTime = "2019-01-01T16:00:00Z" $rule1 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src1 -DestinationContainer dest1 $rule2 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src -DestinationContainer dest -MinCreationTime $minCreationTime -PrefixMatch a,abc,dd #-Tag t1,t2,t3 - # set policy to dest account - $destPolicy = Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId default -SourceAccount $stoname1 -Rule $rule1,$rule2 - $policyID = $destPolicy.PolicyId - Assert-AreEqual $stoname1 $destPolicy.SourceAccount - Assert-AreEqual $stoname2 $destPolicy.DestinationAccount + # set policy to dest account + $destPolicy = Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId default -SourceAccount $sto1.Id -Rule $rule1,$rule2 -EnableMetric $true + $policyID = $destPolicy.PolicyId + Assert-AreEqual $sto1.Id $destPolicy.SourceAccount + Assert-AreEqual $sto2.Id $destPolicy.DestinationAccount Assert-AreEqual 2 $destPolicy.Rules.Count Assert-AreEqual src1 $destPolicy.Rules[0].SourceContainer Assert-AreEqual dest1 $destPolicy.Rules[0].DestinationContainer @@ -769,8 +769,8 @@ function Test-StorageBlobORS Assert-AreEqual $minCreationTime ($destPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") $destPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId $destPolicy.PolicyId Assert-AreEqual $policyID $destPolicy.PolicyId - Assert-AreEqual $stoname1 $destPolicy.SourceAccount - Assert-AreEqual $stoname2 $destPolicy.DestinationAccount + Assert-AreEqual $sto1.Id $destPolicy.SourceAccount + Assert-AreEqual $sto2.Id $destPolicy.DestinationAccount Assert-AreEqual 2 $destPolicy.Rules.Count Assert-AreEqual src1 $destPolicy.Rules[0].SourceContainer Assert-AreEqual dest1 $destPolicy.Rules[0].DestinationContainer @@ -779,13 +779,14 @@ function Test-StorageBlobORS Assert-AreEqual dest $destPolicy.Rules[1].DestinationContainer Assert-AreEqual 3 $destPolicy.Rules[1].Filters.PrefixMatch.Count Assert-AreEqual $minCreationTime ($destPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + Assert-AreEqual $true $destPolicy.Metrics.Enabled #Set policy to source account Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 -InputObject $destPolicy $srcPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 Assert-AreEqual $policyID $srcPolicy.PolicyId - Assert-AreEqual $stoname1 $srcPolicy.SourceAccount - Assert-AreEqual $stoname2 $srcPolicy.DestinationAccount + Assert-AreEqual $sto1.Id $destPolicy.SourceAccount + Assert-AreEqual $sto2.Id $destPolicy.DestinationAccount Assert-AreEqual 2 $srcPolicy.Rules.Count Assert-AreEqual src1 $srcPolicy.Rules[0].SourceContainer Assert-AreEqual dest1 $srcPolicy.Rules[0].DestinationContainer @@ -794,6 +795,7 @@ function Test-StorageBlobORS Assert-AreEqual dest $srcPolicy.Rules[1].DestinationContainer Assert-AreEqual 3 $srcPolicy.Rules[1].Filters.PrefixMatch.Count Assert-AreEqual $minCreationTime ($srcPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + Assert-AreEqual $true $srcPolicy.Metrics.Enabled $destPolicy | Remove-AzStorageObjectReplicationPolicy $srcPolicy | Remove-AzStorageObjectReplicationPolicy @@ -804,7 +806,7 @@ function Test-StorageBlobORS Assert-AreEqual $false $sto2.AllowCrossTenantReplication # Set policy with source account resourceID - Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId default -SourceAccount $sto1.Id -Rule $rule1,$rule2 + Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId default -SourceAccount $sto1.Id -Rule $rule1,$rule2 -EnableMetric $false $destPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 $policyID = $destPolicy.PolicyId Assert-AreEqual $sto1.Id $destPolicy.SourceAccount @@ -817,6 +819,7 @@ function Test-StorageBlobORS Assert-AreEqual dest $destPolicy.Rules[1].DestinationContainer Assert-AreEqual 3 $destPolicy.Rules[1].Filters.PrefixMatch.Count Assert-AreEqual $minCreationTime ($destPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + Assert-AreEqual $false $destPolicy.Metrics.Enabled Set-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 -InputObject $destPolicy $srcPolicy = Get-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 @@ -831,13 +834,14 @@ function Test-StorageBlobORS Assert-AreEqual dest $srcPolicy.Rules[1].DestinationContainer Assert-AreEqual 3 $srcPolicy.Rules[1].Filters.PrefixMatch.Count Assert-AreEqual $minCreationTime ($srcPolicy.Rules[1].Filters.MinCreationTime.ToUniversalTime().ToString("s")+"Z") + Assert-AreEqual $false $srcPolicy.Metrics.Enabled #remove policies Remove-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname2 -PolicyId $destPolicy.PolicyId Remove-AzStorageObjectReplicationPolicy -ResourceGroupName $rgname -StorageAccountName $stoname1 -PolicyId $srcPolicy.PolicyId - - Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname1; - Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname2; + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname1; + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname2; } finally { diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json index 0719e4cddc27..a124a5493381 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobORS.json @@ -1,30 +1,168 @@ { "Entries": [ { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg1503?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTUwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e0ccb403-9989-4950-9a42-f516c13d2b71" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "054e757b-0bbd-4f47-8226-e3e09a9b19f3" + ], + "x-ms-correlation-request-id": [ + "054e757b-0bbd-4f47-8226-e3e09a9b19f3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250306T082751Z:054e757b-0bbd-4f47-8226-e3e09a9b19f3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CFD9F8FD0C314945AFD6A31D46BA829C Ref B: MAA201060516037 Ref C: 2025-03-06T08:27:51Z" + ], + "Date": [ + "Thu, 06 Mar 2025 08:27:50 GMT" + ], + "Content-Length": [ + "25698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n },\r\n {\r\n \"applicationId\": \"b15f3d14-f6d1-4c0d-93da-d4136c97f006\",\r\n \"roleDefinitionId\": \"0ab74188-1a8f-4ea1-b132-5496c2919f3a\"\r\n },\r\n {\r\n \"applicationId\": \"69dda2a9-33ca-4ed0-83fb-a9b7b8973ff4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts/storageTaskAssignments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/encryptionScopes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"storageTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyNetworkSecurityPerimeterUpdatesAvailable\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Central US STG\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"East US STG\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3ad5152a-d2ef-4efe-ba14-6b89702d8288" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-request-id": [ + "66ea87e6-7ca7-45eb-ba72-fa7571df55cf" + ], + "x-ms-correlation-request-id": [ + "66ea87e6-7ca7-45eb-ba72-fa7571df55cf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250306T082755Z:66ea87e6-7ca7-45eb-ba72-fa7571df55cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 30E9815E1A764635A9EE408C50D4FCFF Ref B: MAA201060516017 Ref C: 2025-03-06T08:27:55Z" + ], + "Date": [ + "Thu, 06 Mar 2025 08:27:55 GMT" + ], + "Content-Length": [ + "25698" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n },\r\n {\r\n \"applicationId\": \"b15f3d14-f6d1-4c0d-93da-d4136c97f006\",\r\n \"roleDefinitionId\": \"0ab74188-1a8f-4ea1-b132-5496c2919f3a\"\r\n },\r\n {\r\n \"applicationId\": \"69dda2a9-33ca-4ed0-83fb-a9b7b8973ff4\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts/storageTaskAssignments\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/encryptionScopes\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deletedAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"zoneMappings\": [\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Central US EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"East US 2 EUAP\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Israel Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Italy North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Mexico Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"New Zealand North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Norway East\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Poland Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Qatar Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Spain Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Sweden Central\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"Switzerland North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UAE North\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n },\r\n {\r\n \"location\": \"West US 3\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"storageTasks\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ],\r\n \"capabilities\": \"SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\",\r\n \"2021-08-01\",\r\n \"2021-06-01\",\r\n \"2021-05-01\",\r\n \"2021-04-01\",\r\n \"2021-02-01\",\r\n \"2021-01-01\",\r\n \"2020-08-01-preview\",\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"West US 3\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"East US STG\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/notifyNetworkSecurityPerimeterUpdatesAvailable\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"East US 2 (Stage)\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\",\r\n \"France Central\",\r\n \"France South\",\r\n \"Australia Central\",\r\n \"Australia Central 2\",\r\n \"South Africa West\",\r\n \"South Africa North\",\r\n \"UAE Central\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Switzerland West\",\r\n \"Germany West Central\",\r\n \"Germany North\",\r\n \"Norway East\",\r\n \"Norway West\",\r\n \"South Central US STG\",\r\n \"Brazil Southeast\",\r\n \"West US 3\",\r\n \"East US STG\",\r\n \"Jio India Central\",\r\n \"Jio India West\",\r\n \"Sweden Central\",\r\n \"Qatar Central\",\r\n \"Poland Central\",\r\n \"Italy North\",\r\n \"Israel Central\",\r\n \"Mexico Central\",\r\n \"Spain Central\",\r\n \"New Zealand North\"\r\n ],\r\n \"apiVersions\": [\r\n \"2024-01-01\",\r\n \"2023-05-01\",\r\n \"2023-04-01\",\r\n \"2023-01-01\",\r\n \"2022-09-01\",\r\n \"2022-05-01\",\r\n \"2021-09-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg9614?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTYxND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "bd902e90-9a21-4ebe-8e28-ef795cdcb573" + "a8573eb7-8f5b-4ebd-ac64-23381f9d076c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "33" + "29" ] }, + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -33,16 +171,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-request-id": [ - "39405591-18e1-483d-81e1-c20c68ef60f9" + "5f78d8ac-b903-4cb2-9e4c-0444f47bbe94" ], "x-ms-correlation-request-id": [ - "39405591-18e1-483d-81e1-c20c68ef60f9" + "5f78d8ac-b903-4cb2-9e4c-0444f47bbe94" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050132Z:39405591-18e1-483d-81e1-c20c68ef60f9" + "SOUTHEASTASIA:20250306T082755Z:5f78d8ac-b903-4cb2-9e4c-0444f47bbe94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -50,11 +191,17 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1611CF7E07CE47B896702982B976483A Ref B: MAA201060514033 Ref C: 2025-03-06T08:27:52Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:01:31 GMT" + "Thu, 06 Mar 2025 08:27:54 GMT" ], "Content-Length": [ - "182" + "177" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +210,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503\",\r\n \"name\": \"pstestrg1503\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614\",\r\n \"name\": \"pstestrg9614\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2024-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40846ed3-66a1-4a8c-b0b1-1be774207c3f" + "c28fe0dc-a6dc-4db6-9f74-d15cc108dfcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -91,6 +237,7 @@ "84" ] }, + "RequestBody": "{\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -99,28 +246,34 @@ "no-cache" ], "x-ms-request-id": [ - "86e2aad8-66f2-404a-813b-8224513f43fa" + "f8758d6f-3f55-4cf2-905b-9cec6431ee82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5eb1e9e4-317c-487a-b33a-5ab162ec7413" + "c40ccd75-d895-4a83-88c5-91f0e58017c1" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050133Z:5eb1e9e4-317c-487a-b33a-5ab162ec7413" + "SOUTHEASTASIA:20250306T082756Z:c40ccd75-d895-4a83-88c5-91f0e58017c1" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 5C22CF950E3444608E12F4753FEEED49 Ref B: MAA201060514051 Ref C: 2025-03-06T08:27:56Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:01:33 GMT" + "Thu, 06 Mar 2025 08:27:56 GMT" ], "Content-Length": [ "22" @@ -139,19 +292,18 @@ "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/checkNameAvailability?api-version=2024-01-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "866b19b0-4041-48a2-b48f-6ebeadd7e5c9" + "72751483-e998-4fcf-8211-a810658f5d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -160,6 +312,7 @@ "85" ] }, + "RequestBody": "{\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -168,28 +321,34 @@ "no-cache" ], "x-ms-request-id": [ - "20a1a3c4-640a-4dbe-becb-4adab193db52" + "3a7e06b5-f2af-4ed6-9d1b-246e98fa0cc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "3d442179-b36e-49ed-9bc9-bc618044e983" + "eaa272cd-f3e2-4805-babb-2618069d5ac8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050200Z:3d442179-b36e-49ed-9bc9-bc618044e983" + "SOUTHEASTASIA:20250306T082821Z:eaa272cd-f3e2-4805-babb-2618069d5ac8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E737DE3794C6453D9EBA3E83C7275301 Ref B: MAA201060515049 Ref C: 2025-03-06T08:28:21Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:00 GMT" + "Thu, 06 Mar 2025 08:28:20 GMT" ], "Content-Length": [ "22" @@ -205,30 +364,30 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40846ed3-66a1-4a8c-b0b1-1be774207c3f" + "c28fe0dc-a6dc-4db6-9f74-d15cc108dfcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "103" + "99" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -237,34 +396,40 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/b24c6855-12b6-4761-b162-ea2139d9b22e?monitor=true&api-version=2024-01-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/ace8123d-cc06-4bed-a7b5-e669ce9cd74d?monitor=true&api-version=2024-01-01&t=638768464820940695&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=SxuzUJqLa_lsNIdiTWb8cxtyyMF63lS7UNQ3ww0cx09hPFzVtuGtfigdwZUMD5pxtfm0hcLYgo6LXx4m9n1icj_-_WBDeUMpQA8CU1i1GtkfDmLdn4jt6si8lT3xp7EeV4B-d0vnnfcrZ_tgXdNb82C8_zJht2KASa7nmmAE0XnFl2AEU96L5sEg2p5_Wnl-U6_OxtEOZyCNl6AmOswBMSEPpKJoKjOWcev7EueT1Mlg75OifYqS0kTGPgN6O8L3CvkSzB-31kY-jjWb6Jxu0qKnSFsh1KPF8rmFwswLCgdE9Y33CYoz7j_c36WrRacblLp3k6Rxz9CC8995E5RfZw&h=bu_cg_-qcp9S8L0w1nlQEmVwQgjIbUQJaYvujsr_Yyc" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "b24c6855-12b6-4761-b162-ea2139d9b22e" + "ace8123d-cc06-4bed-a7b5-e669ce9cd74d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "71bf8b95-3395-4891-8e4b-68158580a1b6" + "2034614c-3265-4793-9ed5-cc795d75f5ca" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050142Z:71bf8b95-3395-4891-8e4b-68158580a1b6" + "SOUTHEASTASIA:20250306T082802Z:2034614c-3265-4793-9ed5-cc795d75f5ca" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ED5BAA10AE8C4800B55D54726FF49770 Ref B: MAA201060514051 Ref C: 2025-03-06T08:27:56Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:01:41 GMT" + "Thu, 06 Mar 2025 08:28:01 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -280,21 +445,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/b24c6855-12b6-4761-b162-ea2139d9b22e?monitor=true&api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zL2IyNGM2ODU1LTEyYjYtNDc2MS1iMTYyLWVhMjEzOWQ5YjIyZT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/ace8123d-cc06-4bed-a7b5-e669ce9cd74d?monitor=true&api-version=2024-01-01&t=638768464820940695&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=SxuzUJqLa_lsNIdiTWb8cxtyyMF63lS7UNQ3ww0cx09hPFzVtuGtfigdwZUMD5pxtfm0hcLYgo6LXx4m9n1icj_-_WBDeUMpQA8CU1i1GtkfDmLdn4jt6si8lT3xp7EeV4B-d0vnnfcrZ_tgXdNb82C8_zJht2KASa7nmmAE0XnFl2AEU96L5sEg2p5_Wnl-U6_OxtEOZyCNl6AmOswBMSEPpKJoKjOWcev7EueT1Mlg75OifYqS0kTGPgN6O8L3CvkSzB-31kY-jjWb6Jxu0qKnSFsh1KPF8rmFwswLCgdE9Y33CYoz7j_c36WrRacblLp3k6Rxz9CC8995E5RfZw&h=bu_cg_-qcp9S8L0w1nlQEmVwQgjIbUQJaYvujsr_Yyc", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9hY2U4MTIzZC1jYzA2LTRiZWQtYTdiNS1lNjY5Y2U5Y2Q3NGQ/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjQtMDEtMDEmdD02Mzg3Njg0NjQ4MjA5NDA2OTUmYz1NSUlIcFRDQ0JvMmdBd0lCQWdJVGZ3VGJuODI4RHVjbW1qMjRNZ0FFQk51ZnpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNREl3SGhjTk1qVXdNVEkxTVRJMU1UVXpXaGNOTWpVd056STBNVEkxTVRVeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMMjBUSlFKYmhWNUpyd3puLWZpR3JhZ19DT2ptYVR3RHk5SXIwb2UxQ0xJZmlKOWFnZUJWZmNFbVctazViVVZMM2VnNkI4bVFURVlFLUZKRFZWWjRqYko5UXc4UkVwbTJrQkFTRFJ3b0l0VlZEX0hCcEpmMVZoZFZpRVBKUE1EdkxnMG1BbWRlMFgybTNIVkVPNlk3ZWdnSjlpTDMxRER2OVBGLVh2bjZ4OXhsV3ZPM19PQ0pSZU9vVl9IQ1REeXpkczRQcTlPeVNsbkFHQW96S1l6T3VtYmNWUHpfV0VNY192d1c4MGZqUUxtZGloSmdwNl8xNXFsbk1keDQ4TVFoVkdUM3k0Z2Ria25NUUpnaHl6VEZjc0FTVm5jU3F0bXo4bkF4NXFUOWRaNjNpYUY2RTdGYng3NmZuRjRseDVLNzJBTlg1Y2psZlZPaWc1anpnZjhSUGtDQXdFQUFhT0NCSkl3Z2dTT01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TWlnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRElvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQXlLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd01pZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0owTUIwR0ExVWREZ1FXQkJRcDhEV19va2pUTWJJQldBTkN2UXJfRnJ2emF6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JTdWVjSnJYU1dJRXdiMkJ3bkRsM3g3bDQ4ZFZUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUE1c095S1hjUXdRUUFWS3o5SjhHSWpWeW1aa29IVlNmdDRUcWRnTnhTZG9JQVlra190WWR4X2RFWkNoSmZTdklmemh6QWI4azU3RUhSS053S3RQNzUyU1NVcjBRMG9CNjBZM0ZxN2lsMWZNS0ZUYlZrOVpNVHlPb28zaEptUndKYWlzdjlySzJVVkhXdndEMmlVS0QwSUtfdEh3eTNtNmJxYkdEVkthUm4xSzlVWU0zOXdFdkVkeS1rOEoyejNPbGZuNnlZcGNyVkJIV3pEelN5N1RWZGdVemFhMElaNjcwYUpHUHJOVllNdnNDZXBQMl9UX0ZkSFZrNExvSzlLNF8wLUdrWmJ2QkxaUFFPNkZZZ3R0Zzc4czZObjM0VFVjWFdlVGVlWEFybGtmNDhyYmVMNWZEWV9DSnlLWVhMdjNhcndHN2dVZGNVNVQ4TUdIZUxMemN5byZzPVN4dXpVSnFMYV9sc05JZGlUV2I4Y3h0eXlNRjYzbFM3VU5RM3d3MGN4MDloUEZ6VnR1R3RmaWdkd1pVTUQ1cHh0Zm0waGNMWWdvNkxYeDRtOW4xaWNqXy1fV0JEZVVNcFFBOENVMWkxR3RrZkRtTGRuNGp0NnNpOGxUM3hwN0VlVjRCLWQwdm5uZmNyWl90Z1hkTmI4MkM4X3pKaHQyS0FTYTdubW1BRTBYbkZsMkFFVTk2TDVzRWcycDVfV25sLVU2X094dEVPWnlDTmw2QW1Pc3dCTVNFUHBLSm9Lak9XY2V2N0V1ZVQxTWxnNzVPaWZZcVMwa1RHUGdONk84TDNDdmtTekItMzFrWS1qaldiNkp4dTBxS25TRnNoMUtQRjhybUZ3c3dMQ2dkRTlZMzNDWW96N2pfYzM2V3JSYWNibExwM2s2Unh6OUNDODk5NUU1UmZadyZoPWJ1X2NnXy1xY3A5UzhMMHcxbmxRRW1Wd1FnakliVVFKYVl2dWpzcl9ZeWM=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40846ed3-66a1-4a8c-b0b1-1be774207c3f" + "c28fe0dc-a6dc-4db6-9f74-d15cc108dfcd" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -303,31 +468,37 @@ "no-cache" ], "x-ms-request-id": [ - "ce9e8b41-81c5-45bf-8d5b-63611788bc88" + "5dbe0eed-d5db-4d64-bf8b-92d44f70543e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "e3fe9eb0-7cb5-415a-97ca-cbb8b839558f" + "7de143ac-436a-4d61-9bf8-ce68dcd63a1f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050159Z:e3fe9eb0-7cb5-415a-97ca-cbb8b839558f" + "SOUTHEASTASIA:20250306T082819Z:7de143ac-436a-4d61-9bf8-ce68dcd63a1f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1DF95F5AF7AD4626AE48D19DB13A7809 Ref B: MAA201060514051 Ref C: 2025-03-06T08:28:19Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:01:58 GMT" + "Thu, 06 Mar 2025 08:28:19 GMT" ], "Content-Length": [ - "1443" + "1486" ], "Content-Type": [ "application/json" @@ -336,28 +507,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40846ed3-66a1-4a8c-b0b1-1be774207c3f" + "c28fe0dc-a6dc-4db6-9f74-d15cc108dfcd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -366,31 +537,37 @@ "no-cache" ], "x-ms-request-id": [ - "20745f29-b663-48dd-ab5d-68a13f40d53f" + "f1d1f200-72e3-4861-b6ae-d18d6f322e03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "9702ab9f-fac0-4d99-b710-f3416af893d7" + "47133ecf-f6f2-4150-a568-0561147eddbf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050159Z:9702ab9f-fac0-4d99-b710-f3416af893d7" + "SOUTHEASTASIA:20250306T082820Z:47133ecf-f6f2-4150-a568-0561147eddbf" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FF1655B52510454F8644EBD60A7FFD63 Ref B: MAA201060514051 Ref C: 2025-03-06T08:28:19Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:01:59 GMT" + "Thu, 06 Mar 2025 08:28:20 GMT" ], "Content-Length": [ - "1443" + "1486" ], "Content-Type": [ "application/json" @@ -399,28 +576,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47e85715-05d3-42d7-909e-8232d5723565" + "6da99800-af89-4936-8872-bc87953289da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -429,31 +606,37 @@ "no-cache" ], "x-ms-request-id": [ - "66c50b91-354d-408c-89aa-7c01e3a499f5" + "3accadf1-75d9-4f16-8f3f-46107764554e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "8a4a393a-7fcd-4f9f-b03e-0efdd3be4e52" + "919e954e-1bbe-4061-a079-7fc815a3d815" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050226Z:8a4a393a-7fcd-4f9f-b03e-0efdd3be4e52" + "SOUTHEASTASIA:20250306T082854Z:919e954e-1bbe-4061-a079-7fc815a3d815" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3BA70BF652404E8C8545B9F1FC51E830 Ref B: MAA201060515049 Ref C: 2025-03-06T08:28:54Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:25 GMT" + "Thu, 06 Mar 2025 08:28:54 GMT" ], "Content-Length": [ - "1443" + "1486" ], "Content-Type": [ "application/json" @@ -462,28 +645,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6383ce-59d4-45e3-b07e-00d158ac94ce" + "fd9b8f28-5e9c-4013-a68f-68a4fa9852c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -492,31 +675,37 @@ "no-cache" ], "x-ms-request-id": [ - "7d5682c9-cb24-4541-9d57-65a70d15add4" + "7e4219c8-5997-4dd0-988c-f6f736e99810" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "797a73e1-1a1a-4ab0-9f1e-d6b82d768951" + "cbd3ba43-2ae8-417f-baa9-7dda4edcda42" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050228Z:797a73e1-1a1a-4ab0-9f1e-d6b82d768951" + "SOUTHEASTASIA:20250306T082902Z:cbd3ba43-2ae8-417f-baa9-7dda4edcda42" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 94FBBE3CC5D2422CA43AB8C2596D5EC8 Ref B: MAA201060515029 Ref C: 2025-03-06T08:29:01Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:27 GMT" + "Thu, 06 Mar 2025 08:29:01 GMT" ], "Content-Length": [ - "1443" + "1486" ], "Content-Type": [ "application/json" @@ -525,28 +714,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9b9cce20-de14-459d-93d0-3ce3a1146f76" + "ed3fa651-78cb-45bb-a51c-7ba8baf81e98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -555,31 +744,37 @@ "no-cache" ], "x-ms-request-id": [ - "00aaa8c1-7881-4511-8f9d-c162c210c457" + "da22dc24-ca4a-44fe-9aed-a1ed8602cf4b" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "52d1ceb2-c21c-4e92-af25-a3a68681ce40" + "8671af2b-42eb-4fd8-86ad-a135fcf47371" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050246Z:52d1ceb2-c21c-4e92-af25-a3a68681ce40" + "SOUTHEASTASIA:20250306T082920Z:8671af2b-42eb-4fd8-86ad-a135fcf47371" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EE557170C4254F06AD013BD49BE8AB32 Ref B: MAA201060516023 Ref C: 2025-03-06T08:29:19Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:45 GMT" + "Thu, 06 Mar 2025 08:29:19 GMT" ], "Content-Length": [ - "1479" + "1486" ], "Content-Type": [ "application/json" @@ -588,34 +783,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "866b19b0-4041-48a2-b48f-6ebeadd7e5c9" + "72751483-e998-4fcf-8211-a810658f5d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "103" + "99" ] }, + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -624,34 +819,40 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/90095b92-feba-4327-871f-2291995aaa59?monitor=true&api-version=2024-01-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/87279d2b-3c60-40e4-82de-35b20377ad60?monitor=true&api-version=2024-01-01&t=638768465065533158&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=lclMcliB0KXeNvBoUTsXGeZtUtQmdFPyADf8bXOO6dTIhtm5TwFqGjhBxqXFb3oa-oEkdac-Yvp6vyJxa1rfRKihdhzu_3-ITjnAumj-uLUcNOWJfUKy4BsJ1a0dxE3_dmSETt1I9YuOizbYEAjFKpuG-9Dh1_oxw1FLsLfCFqp4T_GcDTSUued5XFkMywB2azzPriXkb_rtONuWZkIsu4O_3oUHUTt3MV1NUX6GHm4mOMdAl-iFSH_TULvlB1L0xVqsY4HTi5cuEn_ygYQQn0p4Acjdqv1tHHcnS3eJGyXFFY4zIeWPtMluD6utsZSrWHGdvxqo3V-9ti0_J3JOTQ&h=0idrbGhC3BVkaE2iSgqc5Vj8zE3FCxjA8QptGN7Rrjo" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "90095b92-feba-4327-871f-2291995aaa59" + "87279d2b-3c60-40e4-82de-35b20377ad60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "ae732226-2498-49d3-8bb8-a852eaecd75b" + "8145fef8-adf6-498d-87ae-8803a653f9f6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050205Z:ae732226-2498-49d3-8bb8-a852eaecd75b" + "SOUTHEASTASIA:20250306T082826Z:8145fef8-adf6-498d-87ae-8803a653f9f6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C08DE03E3506492DA87516CDF964FED5 Ref B: MAA201060515049 Ref C: 2025-03-06T08:28:21Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:05 GMT" + "Thu, 06 Mar 2025 08:28:26 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -667,21 +868,21 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/90095b92-feba-4327-871f-2291995aaa59?monitor=true&api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zLzkwMDk1YjkyLWZlYmEtNDMyNy04NzFmLTIyOTE5OTVhYWE1OT9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/87279d2b-3c60-40e4-82de-35b20377ad60?monitor=true&api-version=2024-01-01&t=638768465065533158&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=lclMcliB0KXeNvBoUTsXGeZtUtQmdFPyADf8bXOO6dTIhtm5TwFqGjhBxqXFb3oa-oEkdac-Yvp6vyJxa1rfRKihdhzu_3-ITjnAumj-uLUcNOWJfUKy4BsJ1a0dxE3_dmSETt1I9YuOizbYEAjFKpuG-9Dh1_oxw1FLsLfCFqp4T_GcDTSUued5XFkMywB2azzPriXkb_rtONuWZkIsu4O_3oUHUTt3MV1NUX6GHm4mOMdAl-iFSH_TULvlB1L0xVqsY4HTi5cuEn_ygYQQn0p4Acjdqv1tHHcnS3eJGyXFFY4zIeWPtMluD6utsZSrWHGdvxqo3V-9ti0_J3JOTQ&h=0idrbGhC3BVkaE2iSgqc5Vj8zE3FCxjA8QptGN7Rrjo", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy84NzI3OWQyYi0zYzYwLTQwZTQtODJkZS0zNWIyMDM3N2FkNjA/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjQtMDEtMDEmdD02Mzg3Njg0NjUwNjU1MzMxNTgmYz1NSUlIcFRDQ0JvMmdBd0lCQWdJVGZ3VGJuODI4RHVjbW1qMjRNZ0FFQk51ZnpUQU5CZ2txaGtpRzl3MEJBUXNGQURCRU1STXdFUVlLQ1pJbWlaUHlMR1FCR1JZRFIwSk1NUk13RVFZS0NaSW1pWlB5TEdRQkdSWURRVTFGTVJnd0ZnWURWUVFERXc5QlRVVWdTVzVtY21FZ1EwRWdNREl3SGhjTk1qVXdNVEkxTVRJMU1UVXpXaGNOTWpVd056STBNVEkxTVRVeldqQkFNVDR3UEFZRFZRUURFelZoYzNsdVkyOXdaWEpoZEdsdmJuTnBaMjVwYm1kalpYSjBhV1pwWTJGMFpTNXRZVzVoWjJWdFpXNTBMbUY2ZFhKbExtTnZiVENDQVNJd0RRWUpLb1pJaHZjTkFRRUJCUUFEZ2dFUEFEQ0NBUW9DZ2dFQkFMMjBUSlFKYmhWNUpyd3puLWZpR3JhZ19DT2ptYVR3RHk5SXIwb2UxQ0xJZmlKOWFnZUJWZmNFbVctazViVVZMM2VnNkI4bVFURVlFLUZKRFZWWjRqYko5UXc4UkVwbTJrQkFTRFJ3b0l0VlZEX0hCcEpmMVZoZFZpRVBKUE1EdkxnMG1BbWRlMFgybTNIVkVPNlk3ZWdnSjlpTDMxRER2OVBGLVh2bjZ4OXhsV3ZPM19PQ0pSZU9vVl9IQ1REeXpkczRQcTlPeVNsbkFHQW96S1l6T3VtYmNWUHpfV0VNY192d1c4MGZqUUxtZGloSmdwNl8xNXFsbk1keDQ4TVFoVkdUM3k0Z2Ria25NUUpnaHl6VEZjc0FTVm5jU3F0bXo4bkF4NXFUOWRaNjNpYUY2RTdGYng3NmZuRjRseDVLNzJBTlg1Y2psZlZPaWc1anpnZjhSUGtDQXdFQUFhT0NCSkl3Z2dTT01DY0dDU3NHQVFRQmdqY1ZDZ1FhTUJnd0NnWUlLd1lCQlFVSEF3RXdDZ1lJS3dZQkJRVUhBd0l3UFFZSkt3WUJCQUdDTnhVSEJEQXdMZ1ltS3dZQkJBR0NOeFVJaHBEakRZVFZ0SGlFOFlzLWhadmRGczZkRW9GZ2hmbVJTNFdzbVRRQ0FXUUNBUWN3Z2dIYUJnZ3JCZ0VGQlFjQkFRU0NBY3d3Z2dISU1HWUdDQ3NHQVFVRkJ6QUNobHBvZEhSd09pOHZZM0pzTG0xcFkzSnZjMjltZEM1amIyMHZjR3RwYVc1bWNtRXZRMlZ5ZEhNdlFrd3lVRXRKU1U1VVEwRXdNUzVCVFVVdVIwSk1YMEZOUlNVeU1FbHVabkpoSlRJd1EwRWxNakF3TWlnMEtTNWpjblF3VmdZSUt3WUJCUVVITUFLR1NtaDBkSEE2THk5amNtd3hMbUZ0WlM1blltd3ZZV2xoTDBKTU1sQkxTVWxPVkVOQk1ERXVRVTFGTGtkQ1RGOUJUVVVsTWpCSmJtWnlZU1V5TUVOQkpUSXdNRElvTkNrdVkzSjBNRllHQ0NzR0FRVUZCekFDaGtwb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyRnBZUzlDVERKUVMwbEpUbFJEUVRBeExrRk5SUzVIUWt4ZlFVMUZKVEl3U1c1bWNtRWxNakJEUVNVeU1EQXlLRFFwTG1OeWREQldCZ2dyQmdFRkJRY3dBb1pLYUhSMGNEb3ZMMk55YkRNdVlXMWxMbWRpYkM5aGFXRXZRa3d5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd01pZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXcwTG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0owTUIwR0ExVWREZ1FXQkJRcDhEV19va2pUTWJJQldBTkN2UXJfRnJ2emF6QU9CZ05WSFE4QkFmOEVCQU1DQmFBd2dnRTFCZ05WSFI4RWdnRXNNSUlCS0RDQ0FTU2dnZ0Vnb0lJQkhJWkNhSFIwY0RvdkwyTnliQzV0YVdOeWIzTnZablF1WTI5dEwzQnJhV2x1Wm5KaEwwTlNUQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01TNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc01pNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc015NWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzaGpSb2RIUndPaTh2WTNKc05DNWhiV1V1WjJKc0wyTnliQzlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0pzTUlHZEJnTlZIU0FFZ1pVd2daSXdEQVlLS3dZQkJBR0NOM3NCQVRCbUJnb3JCZ0VFQVlJM2V3SUNNRmd3VmdZSUt3WUJCUVVIQWdJd1NoNUlBRE1BTXdCbEFEQUFNUUE1QURJQU1RQXRBRFFBWkFBMkFEUUFMUUEwQUdZQU9BQmpBQzBBWVFBd0FEVUFOUUF0QURVQVlnQmtBR0VBWmdCbUFHUUFOUUJsQURNQU13QmtNQXdHQ2lzR0FRUUJnamQ3QXdJd0RBWUtLd1lCQkFHQ04zc0VBakFmQmdOVkhTTUVHREFXZ0JTdWVjSnJYU1dJRXdiMkJ3bkRsM3g3bDQ4ZFZUQWRCZ05WSFNVRUZqQVVCZ2dyQmdFRkJRY0RBUVlJS3dZQkJRVUhBd0l3RFFZSktvWklodmNOQVFFTEJRQURnZ0VCQUE1c095S1hjUXdRUUFWS3o5SjhHSWpWeW1aa29IVlNmdDRUcWRnTnhTZG9JQVlra190WWR4X2RFWkNoSmZTdklmemh6QWI4azU3RUhSS053S3RQNzUyU1NVcjBRMG9CNjBZM0ZxN2lsMWZNS0ZUYlZrOVpNVHlPb28zaEptUndKYWlzdjlySzJVVkhXdndEMmlVS0QwSUtfdEh3eTNtNmJxYkdEVkthUm4xSzlVWU0zOXdFdkVkeS1rOEoyejNPbGZuNnlZcGNyVkJIV3pEelN5N1RWZGdVemFhMElaNjcwYUpHUHJOVllNdnNDZXBQMl9UX0ZkSFZrNExvSzlLNF8wLUdrWmJ2QkxaUFFPNkZZZ3R0Zzc4czZObjM0VFVjWFdlVGVlWEFybGtmNDhyYmVMNWZEWV9DSnlLWVhMdjNhcndHN2dVZGNVNVQ4TUdIZUxMemN5byZzPWxjbE1jbGlCMEtYZU52Qm9VVHNYR2VadFV0UW1kRlB5QURmOGJYT082ZFRJaHRtNVR3RnFHamhCeHFYRmIzb2Etb0VrZGFjLVl2cDZ2eUp4YTFyZlJLaWhkaHp1XzMtSVRqbkF1bWotdUxVY05PV0pmVUt5NEJzSjFhMGR4RTNfZG1TRVR0MUk5WXVPaXpiWUVBakZLcHVHLTlEaDFfb3h3MUZMc0xmQ0ZxcDRUX0djRFRTVXVlZDVYRmtNeXdCMmF6elByaVhrYl9ydE9OdVdaa0lzdTRPXzNvVUhVVHQzTVYxTlVYNkdIbTRtT01kQWwtaUZTSF9UVUx2bEIxTDB4VnFzWTRIVGk1Y3VFbl95Z1lRUW4wcDRBY2pkcXYxdEhIY25TM2VKR3lYRkZZNHpJZVdQdE1sdUQ2dXRzWlNyV0hHZHZ4cW8zVi05dGkwX0ozSk9UUSZoPTBpZHJiR2hDM0JWa2FFMmlTZ3FjNVZqOHpFM0ZDeGpBOFFwdEdON1Jyam8=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "866b19b0-4041-48a2-b48f-6ebeadd7e5c9" + "72751483-e998-4fcf-8211-a810658f5d10" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -690,31 +891,37 @@ "no-cache" ], "x-ms-request-id": [ - "b493ce48-05f9-4410-9e0e-e2236c48cb47" + "ef76bcd3-ed7a-4218-8dcf-f7d16aa49a9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4a7ba50b-8ef2-4119-bf93-2df791453ec5" + "844ca82b-6ea5-464e-b0c0-9b7dd5d120ac" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050223Z:4a7ba50b-8ef2-4119-bf93-2df791453ec5" + "SOUTHEASTASIA:20250306T082844Z:844ca82b-6ea5-464e-b0c0-9b7dd5d120ac" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 682A372810E84F8C8CD74E23EA6FD690 Ref B: MAA201060515049 Ref C: 2025-03-06T08:28:43Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:22 GMT" + "Thu, 06 Mar 2025 08:28:44 GMT" ], "Content-Length": [ - "1451" + "1494" ], "Content-Type": [ "application/json" @@ -723,28 +930,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "866b19b0-4041-48a2-b48f-6ebeadd7e5c9" + "72751483-e998-4fcf-8211-a810658f5d10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -753,31 +960,37 @@ "no-cache" ], "x-ms-request-id": [ - "b2e98e4e-a338-4fd1-ab8a-3e9ed722fa1f" + "bc67354e-1d0d-4f11-8efe-6b12e071106e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "d2a70ca0-804c-44bb-bdb8-d0f766acd95b" + "ac4821f4-e4bb-4511-b77f-e90f1fdc67f8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050223Z:d2a70ca0-804c-44bb-bdb8-d0f766acd95b" + "SOUTHEASTASIA:20250306T082845Z:ac4821f4-e4bb-4511-b77f-e90f1fdc67f8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 53916336FB7E4F269390D12312BAD93A Ref B: MAA201060515049 Ref C: 2025-03-06T08:28:44Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:22 GMT" + "Thu, 06 Mar 2025 08:28:44 GMT" ], "Content-Length": [ - "1451" + "1494" ], "Content-Type": [ "application/json" @@ -786,28 +999,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e83729b-c61d-451f-90a5-7794f5fb1dd1" + "70911dde-4a5d-488f-9fa8-febe0694aced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -816,31 +1029,37 @@ "no-cache" ], "x-ms-request-id": [ - "e78b067f-7b8b-4c02-9a50-5e8a1395220a" + "8ea31297-6c9b-41ed-9490-b7dc1e3eb17f" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7452b1ea-e9e7-4f8a-9ad3-6b4e78740a5c" + "bb8eacb1-b75b-4dd1-b5f8-fb1c0c884704" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050227Z:7452b1ea-e9e7-4f8a-9ad3-6b4e78740a5c" + "SOUTHEASTASIA:20250306T082858Z:bb8eacb1-b75b-4dd1-b5f8-fb1c0c884704" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: DDF012A901E14A7E98CBFE1524EFE050 Ref B: MAA201060515017 Ref C: 2025-03-06T08:28:57Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:26 GMT" + "Thu, 06 Mar 2025 08:28:57 GMT" ], "Content-Length": [ - "1451" + "1494" ], "Content-Type": [ "application/json" @@ -849,28 +1068,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0dea12-da88-417e-8d6f-b07360a28c70" + "0aba0123-f975-4ff5-9299-f90db05e79b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -879,31 +1098,37 @@ "no-cache" ], "x-ms-request-id": [ - "f17f1ae3-1b00-466d-a833-1b564ab03360" + "390e8668-5e61-4619-9568-5d478c742774" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "05fa48cb-41ca-4e84-a036-0c4460b21c1e" + "3c69bc24-20fd-4aaf-8baa-74ec92139c71" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050229Z:05fa48cb-41ca-4e84-a036-0c4460b21c1e" + "SOUTHEASTASIA:20250306T082906Z:3c69bc24-20fd-4aaf-8baa-74ec92139c71" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41FE4A19773C4868BBF9B9D297036718 Ref B: MAA201060513027 Ref C: 2025-03-06T08:29:06Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:28 GMT" + "Thu, 06 Mar 2025 08:29:06 GMT" ], "Content-Length": [ - "1451" + "1494" ], "Content-Type": [ "application/json" @@ -912,28 +1137,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0be1f703-06fd-4685-bc65-1aef4d263101" + "d9867a8f-11ff-4521-b882-2d8d533041d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -942,31 +1167,37 @@ "no-cache" ], "x-ms-request-id": [ - "b5d16061-a09b-4a75-b9c5-17f5a39ecf2f" + "e7efd42c-f46d-4dc7-b4f3-a20c3c91a26c" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "08498e14-0322-42ab-8b38-dadb32e5b474" + "7fdfbdf2-dc37-4759-8d1a-e736d7222b71" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050248Z:08498e14-0322-42ab-8b38-dadb32e5b474" + "SOUTHEASTASIA:20250306T082909Z:7fdfbdf2-dc37-4759-8d1a-e736d7222b71" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 2077368D6A5B4C758B926A395BC1D4D5 Ref B: MAA201060515037 Ref C: 2025-03-06T08:29:09Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:48 GMT" + "Thu, 06 Mar 2025 08:29:08 GMT" ], "Content-Length": [ - "1487" + "1494" ], "Content-Type": [ "application/json" @@ -975,28 +1206,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8fa76904-e765-4663-b807-27df00bea4cb" + "ef1ee1a9-b31b-41e9-a22c-7041151bede8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1005,31 +1236,106 @@ "no-cache" ], "x-ms-request-id": [ - "a06bf674-b429-4175-82ae-99aae991aa5e" + "b04a4a1f-ee96-4036-b2eb-969b26ee8438" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-reads": [ + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" + ], + "x-ms-correlation-request-id": [ + "c436c4d2-0323-4469-8397-d64ae992ca59" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20250306T082923Z:c436c4d2-0323-4469-8397-d64ae992ca59" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F1D5366C3BD04A2492BD30AC630E1B99 Ref B: MAA201060516031 Ref C: 2025-03-06T08:29:22Z" + ], + "Date": [ + "Thu, 06 Mar 2025 08:29:22 GMT" + ], + "Content-Length": [ + "1494" + ], + "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/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestMethod": "GET", + "RequestHeaders": { + "x-ms-client-request-id": [ + "175e1157-cf47-43eb-a004-84d7c1866c84" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/6.0.3624.51421", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" + ] + }, + "RequestBody": "", + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b905f4ac-ddfd-44d7-9a5f-7c65bb040cd9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11975" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "da71cb7a-d7a3-4806-ad45-7d62ff04ae8f" + "d3deec16-d63a-4e21-80e5-bcae8635c0d8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050248Z:da71cb7a-d7a3-4806-ad45-7d62ff04ae8f" + "SOUTHEASTASIA:20250306T082924Z:d3deec16-d63a-4e21-80e5-bcae8635c0d8" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 9E119DA01D704EA2BD7A5D5CC6DBCA75 Ref B: MAA201060513027 Ref C: 2025-03-06T08:29:23Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:48 GMT" + "Thu, 06 Mar 2025 08:29:24 GMT" ], "Content-Length": [ - "1487" + "1494" ], "Content-Type": [ "application/json" @@ -1038,26 +1344,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isVersioningEnabled\": true,\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "860ac664-36b8-43ea-8c93-25ecf6567460" + "702a3195-fc80-4584-bd7c-9debc48bbeb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1066,6 +1371,7 @@ "113" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1074,28 +1380,34 @@ "no-cache" ], "x-ms-request-id": [ - "9dd92e09-5077-4684-98fc-f90c8af98145" + "c1cc2e7d-df29-4764-a121-13fd00c89ac3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "def839e5-2a04-4532-bcd2-3cf15230e8ef" + "bce4376b-0ef4-44df-889c-5969798591ab" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050223Z:def839e5-2a04-4532-bcd2-3cf15230e8ef" + "SOUTHEASTASIA:20250306T082847Z:bce4376b-0ef4-44df-889c-5969798591ab" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: B148811D7DBE40F5A91FFA6C22045227 Ref B: MAA201060513051 Ref C: 2025-03-06T08:28:45Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:23 GMT" + "Thu, 06 Mar 2025 08:28:47 GMT" ], "Content-Length": [ "317" @@ -1107,28 +1419,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "860ac664-36b8-43ea-8c93-25ecf6567460" + "702a3195-fc80-4584-bd7c-9debc48bbeb4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1137,31 +1449,37 @@ "no-cache" ], "x-ms-request-id": [ - "f18ada1b-6c27-42b7-b8db-8ba03e77e8c4" + "48765c07-ce7c-45cf-88f0-879e2cc94efb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "5542e0b3-4314-4695-a64d-5e68c12baf58" + "39f32f63-922d-4d72-913b-cb6157a3467a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050224Z:5542e0b3-4314-4695-a64d-5e68c12baf58" + "SOUTHEASTASIA:20250306T082848Z:39f32f63-922d-4d72-913b-cb6157a3467a" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: ADBC6ED616494906AA7575A001F34D40 Ref B: MAA201060513051 Ref C: 2025-03-06T08:28:47Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:23 GMT" + "Thu, 06 Mar 2025 08:28:47 GMT" ], "Content-Length": [ - "431" + "460" ], "Content-Type": [ "application/json" @@ -1170,28 +1488,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"allowPermanentDelete\": false,\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "66956164-3d0c-4cdb-920d-47c5bbbf0f39" + "65474c7d-6724-4075-a459-d49e8495a824" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1200,31 +1518,37 @@ "no-cache" ], "x-ms-request-id": [ - "4f9278a5-0bff-47a1-a13f-3fdea50e83ee" + "f6c8d34f-5425-431f-9f81-147b30a1817a" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "857e0ce1-5d37-4290-91ae-e540084f184d" + "b396ad81-13d2-42c2-bf6e-ebdb8170ba93" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050225Z:857e0ce1-5d37-4290-91ae-e540084f184d" + "SOUTHEASTASIA:20250306T082852Z:b396ad81-13d2-42c2-bf6e-ebdb8170ba93" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: FCC405D08989470E97AD02728A181F47 Ref B: MAA201060513011 Ref C: 2025-03-06T08:28:51Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:24 GMT" + "Thu, 06 Mar 2025 08:28:52 GMT" ], "Content-Length": [ - "431" + "460" ], "Content-Type": [ "application/json" @@ -1233,26 +1557,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"allowPermanentDelete\": false,\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isVersioningEnabled\": true,\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "28b57543-b21c-4c00-be61-44a9891f4258" + "f84e0952-d22f-4cc8-8874-0cb5f2a728e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1261,6 +1584,7 @@ "113" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1269,28 +1593,34 @@ "no-cache" ], "x-ms-request-id": [ - "5e175e1a-355d-418a-ad37-e3df448e71bb" + "5562ceb6-690a-4e77-9dd1-91f91ea08bad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "ee755c97-cb17-4b49-9af9-8fed1f0bd143" + "3fc9b51b-eb05-4729-84d8-3e722e0d597f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050224Z:ee755c97-cb17-4b49-9af9-8fed1f0bd143" + "SOUTHEASTASIA:20250306T082851Z:3fc9b51b-eb05-4729-84d8-3e722e0d597f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 8803D36AB0EF4D0CB24D11F56652D95F Ref B: MAA201060515019 Ref C: 2025-03-06T08:28:48Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:23 GMT" + "Thu, 06 Mar 2025 08:28:50 GMT" ], "Content-Length": [ "318" @@ -1302,28 +1632,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "28b57543-b21c-4c00-be61-44a9891f4258" + "f84e0952-d22f-4cc8-8874-0cb5f2a728e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1332,31 +1662,37 @@ "no-cache" ], "x-ms-request-id": [ - "8ea5301f-9459-4390-92a0-4762fc57a85b" + "61321274-0e39-417e-a8b5-c76b914fb90c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "df34d72f-8c33-478f-a698-57c584102ed2" + "6a2a9641-71ec-4187-90dc-146bd483fb75" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050225Z:df34d72f-8c33-478f-a698-57c584102ed2" + "SOUTHEASTASIA:20250306T082851Z:6a2a9641-71ec-4187-90dc-146bd483fb75" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 920188FA7FAD4DA7B58ED83959A5370E Ref B: MAA201060515019 Ref C: 2025-03-06T08:28:51Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:24 GMT" + "Thu, 06 Mar 2025 08:28:50 GMT" ], "Content-Length": [ - "432" + "461" ], "Content-Type": [ "application/json" @@ -1365,28 +1701,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"allowPermanentDelete\": false,\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2be2109-c72e-43f5-859e-89473bb52386" + "018b885f-1520-493b-b10b-92a54d06ef5d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1395,31 +1731,37 @@ "no-cache" ], "x-ms-request-id": [ - "67c763ca-bd31-4d2d-9a1c-2c856efc6874" + "442ae406-0ba0-405d-8009-8e2df8820c56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "4ab5962c-f4f9-4456-b4c0-3059b6c62c53" + "98034d6f-4ae7-4894-a069-0b77c14f0f26" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050225Z:4ab5962c-f4f9-4456-b4c0-3059b6c62c53" + "SOUTHEASTASIA:20250306T082853Z:98034d6f-4ae7-4894-a069-0b77c14f0f26" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41D54A93D76E4A2D90611E28E3397F83 Ref B: MAA201060513039 Ref C: 2025-03-06T08:28:53Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:24 GMT" + "Thu, 06 Mar 2025 08:28:53 GMT" ], "Content-Length": [ - "432" + "461" ], "Content-Type": [ "application/json" @@ -1428,26 +1770,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices\",\r\n \"properties\": {\r\n \"changeFeed\": {\r\n \"enabled\": true\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"deleteRetentionPolicy\": {\r\n \"allowPermanentDelete\": false,\r\n \"enabled\": false\r\n },\r\n \"isVersioningEnabled\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "47e85715-05d3-42d7-909e-8232d5723565" + "6da99800-af89-4936-8872-bc87953289da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1456,6 +1797,7 @@ "2" ] }, + "RequestBody": "{}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1464,31 +1806,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2A5BC4C5\"" + "\"0x8DD5C88EF99C9A7\"" ], "x-ms-request-id": [ - "a6697ce1-44ea-44d3-82b3-2bc20150ea75" + "17f44f74-1fb9-4565-91fb-8bf0a3870218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "6ba46f64-5ec8-4646-8fcb-54f34c82814c" + "5a2557d3-0bed-48fd-b86d-3cf4019ba6dd" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050226Z:6ba46f64-5ec8-4646-8fcb-54f34c82814c" + "SOUTHEASTASIA:20250306T082856Z:5a2557d3-0bed-48fd-b86d-3cf4019ba6dd" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E72079FA542C4BF5BE2551E7991B9CEA Ref B: MAA201060514017 Ref C: 2025-03-06T08:28:54Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:25 GMT" + "Thu, 06 Mar 2025 08:28:56 GMT" ], "Content-Length": [ "267" @@ -1500,28 +1848,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src\",\r\n \"name\": \"src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src\",\r\n \"name\": \"src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47e85715-05d3-42d7-909e-8232d5723565" + "6da99800-af89-4936-8872-bc87953289da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1530,31 +1878,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2A5BC4C5\"" + "\"0x8DD5C88EF99C9A7\"" ], "x-ms-request-id": [ - "e7b53c7d-3d9c-432e-a474-12c1a85b8793" + "482658b7-6eef-4ae2-9564-852af8129b26" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7ba4d975-dc9d-45d8-9458-f9fc438cd248" + "511ea493-0858-490d-b69b-d52d3b2608ef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050227Z:7ba4d975-dc9d-45d8-9458-f9fc438cd248" + "SOUTHEASTASIA:20250306T082857Z:511ea493-0858-490d-b69b-d52d3b2608ef" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 184BFE0C9FFA4B5988CBF1CA9E25F074 Ref B: MAA201060514017 Ref C: 2025-03-06T08:28:56Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:26 GMT" + "Thu, 06 Mar 2025 08:28:56 GMT" ], "Content-Length": [ "661" @@ -1566,26 +1920,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src\",\r\n \"name\": \"src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D9823D2A5BC4C5\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-09-28T05:02:26Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src\",\r\n \"name\": \"src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8DD5C88EF99C9A7\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2025-03-06T08:28:56Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "7e83729b-c61d-451f-90a5-7794f5fb1dd1" + "70911dde-4a5d-488f-9fa8-febe0694aced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1594,6 +1947,7 @@ "2" ] }, + "RequestBody": "{}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1602,31 +1956,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2B0BC10A\"" + "\"0x8DD5C88F22820BA\"" ], "x-ms-request-id": [ - "5c84f41b-f3ef-4ead-8fc2-68c9365fe72b" + "26382bca-fc9d-4083-88ac-fc34f82dbbb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "124a78a8-44c2-476f-9b6a-2fdd663d03ab" + "0d346bd7-1b26-4a43-9f5d-aa52db731d52" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050227Z:124a78a8-44c2-476f-9b6a-2fdd663d03ab" + "SOUTHEASTASIA:20250306T082900Z:0d346bd7-1b26-4a43-9f5d-aa52db731d52" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: EDBBC97E94EB41FA9F64292E1041BE53 Ref B: MAA201060513023 Ref C: 2025-03-06T08:28:58Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:26 GMT" + "Thu, 06 Mar 2025 08:29:00 GMT" ], "Content-Length": [ "270" @@ -1638,28 +1998,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest\",\r\n \"name\": \"dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest\",\r\n \"name\": \"dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e83729b-c61d-451f-90a5-7794f5fb1dd1" + "70911dde-4a5d-488f-9fa8-febe0694aced" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1668,31 +2028,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2B0BC10A\"" + "\"0x8DD5C88F22820BA\"" ], "x-ms-request-id": [ - "23c8c3c6-55a1-4ec6-93fe-a0c9095fe9b7" + "7aac8efc-d2cb-4d70-8d8d-9c5a0b3a9dfb" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "54dd8788-199e-4d3b-9648-7f03e6b718c7" + "0086d94a-6cf8-4eb8-ad25-56669b9d95e4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050228Z:54dd8788-199e-4d3b-9648-7f03e6b718c7" + "SOUTHEASTASIA:20250306T082901Z:0086d94a-6cf8-4eb8-ad25-56669b9d95e4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 72C5DA49E6E84CF4A9B075B09FEB4BB4 Ref B: MAA201060513023 Ref C: 2025-03-06T08:29:00Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:27 GMT" + "Thu, 06 Mar 2025 08:29:00 GMT" ], "Content-Length": [ "664" @@ -1704,26 +2070,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest\",\r\n \"name\": \"dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D9823D2B0BC10A\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-09-28T05:02:27Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest\",\r\n \"name\": \"dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8DD5C88F22820BA\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2025-03-06T08:29:00Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src1?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYzE/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src1?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYzE/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6383ce-59d4-45e3-b07e-00d158ac94ce" + "fd9b8f28-5e9c-4013-a68f-68a4fa9852c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1732,6 +2097,7 @@ "2" ] }, + "RequestBody": "{}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1740,31 +2106,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2BB2BDF3\"" + "\"0x8DD5C88F4467634\"" ], "x-ms-request-id": [ - "ceaec2f5-92a9-4fe4-b43f-9f9177fa23b3" + "6652ab70-66b6-4f0a-9242-5745f019452b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "15c878e6-4395-4488-90af-e4f69e53611b" + "ca3560f2-adfc-4be1-a25d-4bef159fca29" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050228Z:15c878e6-4395-4488-90af-e4f69e53611b" + "SOUTHEASTASIA:20250306T082904Z:ca3560f2-adfc-4be1-a25d-4bef159fca29" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4ECDE48E79694182A9359AC60FFB4231 Ref B: MAA201060516009 Ref C: 2025-03-06T08:29:02Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:27 GMT" + "Thu, 06 Mar 2025 08:29:04 GMT" ], "Content-Length": [ "269" @@ -1776,28 +2148,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src1\",\r\n \"name\": \"src1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src1\",\r\n \"name\": \"src1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src1?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYzE/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src1?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL3NyYzE/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a6383ce-59d4-45e3-b07e-00d158ac94ce" + "fd9b8f28-5e9c-4013-a68f-68a4fa9852c5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1806,31 +2178,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2BB2BDF3\"" + "\"0x8DD5C88F4467634\"" ], "x-ms-request-id": [ - "d0ff2065-dc7b-4937-a27f-47b6e4e2230e" + "36c339d9-91bd-48e2-bc90-f71b030d9d96" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "893a2938-ce85-43d4-bc2e-164ab16b2d0e" + "5e4464ed-bcdd-49f7-b9e8-6882e3c878cc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050229Z:893a2938-ce85-43d4-bc2e-164ab16b2d0e" + "SOUTHEASTASIA:20250306T082905Z:5e4464ed-bcdd-49f7-b9e8-6882e3c878cc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 4F6F58CC686B4ADF91E1E9C5CE47FB0D Ref B: MAA201060516009 Ref C: 2025-03-06T08:29:04Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:28 GMT" + "Thu, 06 Mar 2025 08:29:05 GMT" ], "Content-Length": [ "663" @@ -1842,26 +2220,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/blobServices/default/containers/src1\",\r\n \"name\": \"src1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D9823D2BB2BDF3\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-09-28T05:02:28Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/blobServices/default/containers/src1\",\r\n \"name\": \"src1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8DD5C88F4467634\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2025-03-06T08:29:04Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest1?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest1?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0dea12-da88-417e-8d6f-b07360a28c70" + "0aba0123-f975-4ff5-9299-f90db05e79b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1870,6 +2247,7 @@ "2" ] }, + "RequestBody": "{}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1878,31 +2256,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2C59E1E6\"" + "\"0x8DD5C88F6B8638D\"" ], "x-ms-request-id": [ - "b6eaa46d-b855-4ca4-a150-18a78a94d11a" + "8dcc3f6f-f2ea-4829-8813-3ca1120eba34" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "6206adee-0c4b-475f-a00d-86541be488d6" + "c4124a0e-e0ce-4e16-b7d6-131534fc8681" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050229Z:6206adee-0c4b-475f-a00d-86541be488d6" + "SOUTHEASTASIA:20250306T082908Z:c4124a0e-e0ce-4e16-b7d6-131534fc8681" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 28527876AB3E4028AFE849B296D3CFFD Ref B: MAA201060516011 Ref C: 2025-03-06T08:29:06Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:29 GMT" + "Thu, 06 Mar 2025 08:29:08 GMT" ], "Content-Length": [ "272" @@ -1914,28 +2298,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest1\",\r\n \"name\": \"dest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest1\",\r\n \"name\": \"dest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest1?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest1?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3QvYmxvYlNlcnZpY2VzL2RlZmF1bHQvY29udGFpbmVycy9kZXN0MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c0dea12-da88-417e-8d6f-b07360a28c70" + "0aba0123-f975-4ff5-9299-f90db05e79b7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -1944,31 +2328,37 @@ "no-cache" ], "ETag": [ - "\"0x8D9823D2C59E1E6\"" + "\"0x8DD5C88F6B8638D\"" ], "x-ms-request-id": [ - "a292b40e-48a0-45f7-a558-3722d2dcf5ae" + "f61c45dc-3986-4e7e-b5d1-54daf4fcf2d8" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "05f69b2a-80f0-4602-9168-2829533b45f0" + "9a4c3b0e-59ff-47dd-a94f-9b148d4631dc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050230Z:05f69b2a-80f0-4602-9168-2829533b45f0" + "SOUTHEASTASIA:20250306T082908Z:9a4c3b0e-59ff-47dd-a94f-9b148d4631dc" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0F1B7F5B01574075A0E5E3005AB72268 Ref B: MAA201060516011 Ref C: 2025-03-06T08:29:08Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:29 GMT" + "Thu, 06 Mar 2025 08:29:08 GMT" ], "Content-Length": [ "666" @@ -1980,34 +2370,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/blobServices/default/containers/dest1\",\r\n \"name\": \"dest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D9823D2C59E1E6\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-09-28T05:02:29Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/blobServices/default/containers/dest1\",\r\n \"name\": \"dest1\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8DD5C88F6B8638D\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"$account-encryption-key\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2025-03-06T08:29:08Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "06487074-8fb0-4bf4-b0fb-e752f22df607" + "d9867a8f-11ff-4521-b882-2d8d533041d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "519" + "816" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"metrics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2016,31 +2406,37 @@ "no-cache" ], "x-ms-request-id": [ - "93b5dae5-30b1-4ca1-aac2-4e4b82a4b4c4" + "10de8574-d486-44a1-aed2-3a96fba85050" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "855759ca-7113-4d50-a508-69b7d6b3fef5" + "e48735f0-c3cf-4b0a-af51-c26abdd107f0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050240Z:855759ca-7113-4d50-a508-69b7d6b3fef5" + "SOUTHEASTASIA:20250306T082911Z:e48735f0-c3cf-4b0a-af51-c26abdd107f0" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E011A0087A324A9C9DCF7E8604AB0D4B Ref B: MAA201060515037 Ref C: 2025-03-06T08:29:09Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:39 GMT" + "Thu, 06 Mar 2025 08:29:11 GMT" ], "Content-Length": [ - "779" + "1054" ], "Content-Type": [ "application/json" @@ -2049,34 +2445,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"name\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"86a3900b-ad21-442b-b9c8-2e8b2d2e571e\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"18a6f735-0570-410a-8897-dc0e31b43cc2\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"name\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": true\r\n },\r\n \"policyId\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"80af5910-78d6-4e85-9cab-b21115d9894b\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"6686900f-c2de-4eb8-a523-9e6c5adf6adb\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/default?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/default?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9kZWZhdWx0P2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8fa76904-e765-4663-b807-27df00bea4cb" + "175e1157-cf47-43eb-a004-84d7c1866c84" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "767" + "817" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"metrics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2085,31 +2481,37 @@ "no-cache" ], "x-ms-request-id": [ - "bbae1773-70f9-430f-b347-fb924cddf4d0" + "dc8e9b5e-ee6c-49c9-ba15-785eb729f404" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "8222e0e6-7c73-4c44-a6cb-34a6b5466765" + "85e25e96-26bf-4042-ba3d-572210f70e52" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050259Z:8222e0e6-7c73-4c44-a6cb-34a6b5466765" + "SOUTHEASTASIA:20250306T082926Z:85e25e96-26bf-4042-ba3d-572210f70e52" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E1DC5D71E56545949D52BA24FEC2CF75 Ref B: MAA201060513027 Ref C: 2025-03-06T08:29:24Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:59 GMT" + "Thu, 06 Mar 2025 08:29:26 GMT" ], "Content-Length": [ - "1027" + "1055" ], "Content-Type": [ "application/json" @@ -2118,28 +2520,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"name\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"1328e205-0bc4-4c64-9353-d11778dd2beb\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"944ffb1d-ef09-48b0-b2da-16acf4f9a02b\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"name\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": false\r\n },\r\n \"policyId\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"8bd8c740-3101-4556-87bc-82f7cc1be4f8\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"5993ecf4-2229-450c-bcf9-f18bec2ebc96\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy81NmViZWE2Yy1jZWVkLTRlNzItYTg3ZC0xM2YwNjdiM2VlYjA/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9iMjEwMjM4OS1kYTQ0LTQ3ZmQtODQ2Mi1iMzRiZGE0NGZlZTI/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c81dd32-bce5-4f3e-bb63-4c260ff2ed53" + "6c6e9e9c-d0cf-4d32-835e-78a2312d001c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2148,31 +2550,37 @@ "no-cache" ], "x-ms-request-id": [ - "76632a48-67c8-4adf-8dd2-77082021e971" + "1ffe0257-63d1-45fc-a94a-6f1bb38bc0e3" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "782fc9a3-c0f7-45d6-a5df-8139e1838560" + "3d5e7e85-99a0-469d-a7d8-05beed9c3056" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050241Z:782fc9a3-c0f7-45d6-a5df-8139e1838560" + "SOUTHEASTASIA:20250306T082912Z:3d5e7e85-99a0-469d-a7d8-05beed9c3056" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 032FB618EC624A738B281DE271551CA1 Ref B: MAA201060513049 Ref C: 2025-03-06T08:29:12Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:40 GMT" + "Thu, 06 Mar 2025 08:29:12 GMT" ], "Content-Length": [ - "779" + "1054" ], "Content-Type": [ "application/json" @@ -2181,34 +2589,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"name\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"86a3900b-ad21-442b-b9c8-2e8b2d2e571e\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"18a6f735-0570-410a-8897-dc0e31b43cc2\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"name\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": true\r\n },\r\n \"policyId\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"80af5910-78d6-4e85-9cab-b21115d9894b\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"6686900f-c2de-4eb8-a523-9e6c5adf6adb\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzLzU2ZWJlYTZjLWNlZWQtNGU3Mi1hODdkLTEzZjA2N2IzZWViMD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2IyMTAyMzg5LWRhNDQtNDdmZC04NDYyLWIzNGJkYTQ0ZmVlMj9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"86a3900b-ad21-442b-b9c8-2e8b2d2e571e\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"18a6f735-0570-410a-8897-dc0e31b43cc2\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9d361320-93d4-40b1-a2c1-47f2ed5e1f68" + "15192a65-3c4d-4a30-9d26-fb5d87d5cb76" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "637" + "934" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"80af5910-78d6-4e85-9cab-b21115d9894b\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"6686900f-c2de-4eb8-a523-9e6c5adf6adb\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"metrics\": {\r\n \"enabled\": true\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2217,31 +2625,37 @@ "no-cache" ], "x-ms-request-id": [ - "6ec57d7f-23f0-4497-bf61-0b2d5642d464" + "ecfcf21a-3664-4c2f-9938-2eb8eae2598c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "531be863-9cd5-4e95-b691-cd77f1dcb227" + "881d9e81-d676-4cd5-a744-01bb1de76c54" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050242Z:531be863-9cd5-4e95-b691-cd77f1dcb227" + "SOUTHEASTASIA:20250306T082914Z:881d9e81-d676-4cd5-a744-01bb1de76c54" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: AD9AA46208A34EF1BBA8237381130E2B Ref B: MAA201060516039 Ref C: 2025-03-06T08:29:13Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:41 GMT" + "Thu, 06 Mar 2025 08:29:14 GMT" ], "Content-Length": [ - "823" + "1098" ], "Content-Type": [ "application/json" @@ -2250,28 +2664,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"name\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"enabledTime\": \"2021-09-28T05:02:42.1547167Z\",\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"86a3900b-ad21-442b-b9c8-2e8b2d2e571e\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"18a6f735-0570-410a-8897-dc0e31b43cc2\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"name\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": true\r\n },\r\n \"policyId\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"enabledTime\": \"2025-03-06T08:29:14.4486729Z\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"80af5910-78d6-4e85-9cab-b21115d9894b\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"6686900f-c2de-4eb8-a523-9e6c5adf6adb\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5666cba-81a5-45cf-9d46-285100d82bc2" + "9d2e8d82-5078-4f13-b96e-258340bed125" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2280,31 +2694,37 @@ "no-cache" ], "x-ms-request-id": [ - "a038d6da-a42a-417b-92eb-5ed266d527f7" + "3b85f86e-0ea7-462e-bc9e-122b70c2d2d8" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "7447ebf0-e362-4492-abfb-44445790ff36" + "0e719a57-a096-4a4a-9779-99d442c683df" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050242Z:7447ebf0-e362-4492-abfb-44445790ff36" + "SOUTHEASTASIA:20250306T082915Z:0e719a57-a096-4a4a-9779-99d442c683df" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: BC5DD5ACB33F418FBF5713A2827CF634 Ref B: MAA201060516031 Ref C: 2025-03-06T08:29:15Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:41 GMT" + "Thu, 06 Mar 2025 08:29:14 GMT" ], "Content-Length": [ - "790" + "1065" ], "Content-Type": [ "application/json" @@ -2313,28 +2733,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"name\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"56ebea6c-ceed-4e72-a87d-13f067b3eeb0\",\r\n \"sourceAccount\": \"stopstestrg1503src\",\r\n \"destinationAccount\": \"stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"86a3900b-ad21-442b-b9c8-2e8b2d2e571e\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"18a6f735-0570-410a-8897-dc0e31b43cc2\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"name\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": true\r\n },\r\n \"policyId\": \"b2102389-da44-47fd-8462-b34bda44fee2\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"80af5910-78d6-4e85-9cab-b21115d9894b\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"6686900f-c2de-4eb8-a523-9e6c5adf6adb\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzP2FwaS12ZXJzaW9uPTIwMjQtMDEtMDE=", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87c85ec0-8de3-4ac8-bcc4-02b58c222792" + "24c2a3f5-5ad2-4af0-8194-4c980d4202a1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2343,31 +2763,37 @@ "no-cache" ], "x-ms-request-id": [ - "ff781b96-7443-44e5-86c4-dcee4998b92e" + "bf7c16fc-8d3c-4143-944c-412340fbedfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11973" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "92db92ca-40fd-450d-bf93-bbdbb42154ae" + "1ca5cf6e-4520-454a-ac59-25230d28e39f" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050300Z:92db92ca-40fd-450d-bf93-bbdbb42154ae" + "SOUTHEASTASIA:20250306T082930Z:1ca5cf6e-4520-454a-ac59-25230d28e39f" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C9D6CE2069114F3AB909BBFF8F5E0FD1 Ref B: MAA201060514035 Ref C: 2025-03-06T08:29:29Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:00 GMT" + "Thu, 06 Mar 2025 08:29:30 GMT" ], "Content-Length": [ - "1038" + "1066" ], "Content-Type": [ "application/json" @@ -2376,28 +2802,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"name\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"1328e205-0bc4-4c64-9353-d11778dd2beb\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"944ffb1d-ef09-48b0-b2da-16acf4f9a02b\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"name\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": false\r\n },\r\n \"policyId\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"8bd8c740-3101-4556-87bc-82f7cc1be4f8\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"5993ecf4-2229-450c-bcf9-f18bec2ebc96\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy81NmViZWE2Yy1jZWVkLTRlNzItYTg3ZC0xM2YwNjdiM2VlYjA/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9iMjEwMjM4OS1kYTQ0LTQ3ZmQtODQ2Mi1iMzRiZGE0NGZlZTI/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35989885-58af-43e6-932a-79bf47142956" + "9a718694-9df1-4d78-9d31-b1058f09109b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2406,28 +2832,34 @@ "no-cache" ], "x-ms-request-id": [ - "d1f86319-da9b-4cec-9856-1ecf56af9819" + "73b208ad-7c85-4f6c-8655-d38daba0e683" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" ], "x-ms-correlation-request-id": [ - "50177e35-851f-470d-b707-53af97642c16" + "4e46d3e5-e751-4873-90e4-e881a500ced4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050243Z:50177e35-851f-470d-b707-53af97642c16" + "SOUTHEASTASIA:20250306T082916Z:4e46d3e5-e751-4873-90e4-e881a500ced4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: CAB2FD91BF52479FB09740D57DDBDDC1 Ref B: MAA201060515035 Ref C: 2025-03-06T08:29:15Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:42 GMT" + "Thu, 06 Mar 2025 08:29:15 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2443,24 +2875,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/56ebea6c-ceed-4e72-a87d-13f067b3eeb0?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzLzU2ZWJlYTZjLWNlZWQtNGU3Mi1hODdkLTEzZjA2N2IzZWViMD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/b2102389-da44-47fd-8462-b34bda44fee2?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2IyMTAyMzg5LWRhNDQtNDdmZC04NDYyLWIzNGJkYTQ0ZmVlMj9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a2064fd-a1f4-4e4c-967d-903211e33429" + "d8fe5c99-ee22-4b67-8d25-1c7294a2b580" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2469,28 +2901,34 @@ "no-cache" ], "x-ms-request-id": [ - "dc742b18-3687-41e1-b6f2-cbb76926044e" + "0d3a6e0e-fa11-4f89-ab13-e06964f5f531" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" ], "x-ms-correlation-request-id": [ - "d5d7ad9a-2ca6-4398-a800-9eb130a26914" + "1964887b-40bb-47a0-88ab-2b9c9a860c03" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050243Z:d5d7ad9a-2ca6-4398-a800-9eb130a26914" + "SOUTHEASTASIA:20250306T082917Z:1964887b-40bb-47a0-88ab-2b9c9a860c03" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 0518E241B80A4CBE8D8FBD67A54C3F6E Ref B: MAA201060515051 Ref C: 2025-03-06T08:29:16Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:42 GMT" + "Thu, 06 Mar 2025 08:29:16 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2506,22 +2944,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"allowCrossTenantReplication\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9b9cce20-de14-459d-93d0-3ce3a1146f76" + "ed3fa651-78cb-45bb-a51c-7ba8baf81e98" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2530,6 +2967,7 @@ "109" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"allowCrossTenantReplication\": false\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2538,31 +2976,37 @@ "no-cache" ], "x-ms-request-id": [ - "2112b3f7-9cc4-4198-8ef9-d0dc1b17bb72" + "006bf1c9-ba87-477a-acc5-7376a860a416" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "cf7baeac-42ce-42aa-a34b-670c8be83050" + "b356e46b-9cd4-4013-bbc5-b3dc21944b24" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050246Z:cf7baeac-42ce-42aa-a34b-670c8be83050" + "SOUTHEASTASIA:20250306T082919Z:b356e46b-9cd4-4013-bbc5-b3dc21944b24" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 7204EDEC5FD14D519A9AB439EAC96EBE Ref B: MAA201060516023 Ref C: 2025-03-06T08:29:18Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:45 GMT" + "Thu, 06 Mar 2025 08:29:19 GMT" ], "Content-Length": [ - "1479" + "1486" ], "Content-Type": [ "application/json" @@ -2571,26 +3015,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"name\": \"stopstestrg1503src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:01:40.5424144Z\",\r\n \"key2\": \"2021-09-28T05:01:40.5424144Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:01:40.5424144Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:01:40.5424144Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:01:40.4486486Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503src.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"name\": \"stopstestrg9614src\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:27:59.3382Z\",\r\n \"key2\": \"2025-03-06T08:27:59.3382Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:27:59.3538279Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:27:59.3538279Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:27:59.1975738Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614src.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614src.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614src.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614src.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614src.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614src.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"allowCrossTenantReplication\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0be1f703-06fd-4685-bc65-1aef4d263101" + "ef1ee1a9-b31b-41e9-a22c-7041151bede8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2599,6 +3042,7 @@ "109" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"allowCrossTenantReplication\": false\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2607,31 +3051,37 @@ "no-cache" ], "x-ms-request-id": [ - "e4460c8a-8410-4c67-b8de-7f224b58d667" + "e7c53a3b-736e-4d06-83f6-72cdc48b463d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "1c66956e-590b-4226-82bb-b4d01ec306b0" + "47ff9709-3499-4e79-bfca-c1e0c8d57d66" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050247Z:1c66956e-590b-4226-82bb-b4d01ec306b0" + "SOUTHEASTASIA:20250306T082922Z:47ff9709-3499-4e79-bfca-c1e0c8d57d66" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: C109FEFD261045F896C7941802DF03F8 Ref B: MAA201060516031 Ref C: 2025-03-06T08:29:20Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:47 GMT" + "Thu, 06 Mar 2025 08:29:21 GMT" ], "Content-Length": [ - "1487" + "1494" ], "Content-Type": [ "application/json" @@ -2640,28 +3090,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"name\": \"stopstestrg1503dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2021-09-28T05:02:04.2933162Z\",\r\n \"key2\": \"2021-09-28T05:02:04.2933162Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_0\",\r\n \"allowBlobPublicAccess\": true,\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-09-28T05:02:04.3089345Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-09-28T05:02:04.3089345Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-09-28T05:02:04.1996191Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg1503dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg1503dest.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg1503dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg1503dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg1503dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg1503dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"name\": \"stopstestrg9614dest\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"keyCreationTime\": {\r\n \"key1\": \"2025-03-06T08:28:24.0104696Z\",\r\n \"key2\": \"2025-03-06T08:28:24.0104696Z\"\r\n },\r\n \"allowCrossTenantReplication\": false,\r\n \"privateEndpointConnections\": [],\r\n \"minimumTlsVersion\": \"TLS1_2\",\r\n \"allowBlobPublicAccess\": false,\r\n \"networkAcls\": {\r\n \"ipv6Rules\": [],\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\": \"2025-03-06T08:28:24.0260461Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2025-03-06T08:28:24.0260461Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2025-03-06T08:28:23.8698414Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg9614dest.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg9614dest.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg9614dest.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9614dest.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9614dest.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg9614dest.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9d6541f-1b22-4e29-9d88-fe4b7067a870" + "71e851f6-b59c-4796-9e6a-5f91041efa59" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2670,31 +3120,37 @@ "no-cache" ], "x-ms-request-id": [ - "ce4f4db0-105f-4f4a-8625-7a048a1ed1aa" + "40bb970d-20d5-4c81-a871-10b604f5f371" ], "Strict-Transport-Security": [ "max-age=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" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-correlation-request-id": [ - "ef3fc4fb-fca8-49dc-986f-64e60e28f6bb" + "7ee62e77-2851-46aa-8519-28246a799aa6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050259Z:ef3fc4fb-fca8-49dc-986f-64e60e28f6bb" + "SOUTHEASTASIA:20250306T082927Z:7ee62e77-2851-46aa-8519-28246a799aa6" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3FA315981CFF4E3FB36DD5C7F02E7A51 Ref B: MAA201060513023 Ref C: 2025-03-06T08:29:26Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:59 GMT" + "Thu, 06 Mar 2025 08:29:26 GMT" ], "Content-Length": [ - "1039" + "1067" ], "Content-Type": [ "application/json" @@ -2703,34 +3159,34 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"name\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"1328e205-0bc4-4c64-9353-d11778dd2beb\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"944ffb1d-ef09-48b0-b2da-16acf4f9a02b\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"name\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": false\r\n },\r\n \"policyId\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"8bd8c740-3101-4556-87bc-82f7cc1be4f8\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"5993ecf4-2229-450c-bcf9-f18bec2ebc96\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2UxYmQ1MWY2LWZhMjktNGI5NS1hMzA3LTg3ZWRiN2Q4ZDc5ZD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2EyNTVmZDU2LTcwMzItNDdmMi05MGI4LTNmODM0M2JlZTI3MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"1328e205-0bc4-4c64-9353-d11778dd2beb\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"944ffb1d-ef09-48b0-b2da-16acf4f9a02b\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66b8fc35-a1bd-4353-9b8e-97ab1a6b6c7d" + "fd066c10-378e-4964-ae56-e6ac4b777b27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "885" + "935" ] }, + "RequestBody": "{\r\n \"properties\": {\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"8bd8c740-3101-4556-87bc-82f7cc1be4f8\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"5993ecf4-2229-450c-bcf9-f18bec2ebc96\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ],\r\n \"metrics\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2739,31 +3195,37 @@ "no-cache" ], "x-ms-request-id": [ - "7dec2fe0-e7d5-4cac-91b1-fa12494073a1" + "2008bd57-4300-4a4e-a2aa-5d4e2b13ac12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-writes": [ + "11999" ], "x-ms-correlation-request-id": [ - "2971f346-eff7-4020-86c9-adc68a5dfacd" + "cc4412b9-f5a7-48d0-9a24-959742bd14d4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050300Z:2971f346-eff7-4020-86c9-adc68a5dfacd" + "SOUTHEASTASIA:20250306T082929Z:cc4412b9-f5a7-48d0-9a24-959742bd14d4" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 1AB2FE06F6E44AA88B259F4287D21C07 Ref B: MAA201060513023 Ref C: 2025-03-06T08:29:27Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:02:59 GMT" + "Thu, 06 Mar 2025 08:29:28 GMT" ], "Content-Length": [ - "1071" + "1099" ], "Content-Type": [ "application/json" @@ -2772,28 +3234,28 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"name\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"policyId\": \"e1bd51f6-fa29-4b95-a307-87edb7d8d79d\",\r\n \"enabledTime\": \"2021-09-28T05:02:59.8736043Z\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"1328e205-0bc4-4c64-9353-d11778dd2beb\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"944ffb1d-ef09-48b0-b2da-16acf4f9a02b\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"name\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/objectReplicationPolicies\",\r\n \"properties\": {\r\n \"metrics\": {\r\n \"enabled\": false\r\n },\r\n \"policyId\": \"a255fd56-7032-47f2-90b8-3f8343bee271\",\r\n \"enabledTime\": \"2025-03-06T08:29:28.9019735Z\",\r\n \"sourceAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src\",\r\n \"destinationAccount\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"8bd8c740-3101-4556-87bc-82f7cc1be4f8\",\r\n \"sourceContainer\": \"src1\",\r\n \"destinationContainer\": \"dest1\"\r\n },\r\n {\r\n \"ruleId\": \"5993ecf4-2229-450c-bcf9-f18bec2ebc96\",\r\n \"sourceContainer\": \"src\",\r\n \"destinationContainer\": \"dest\",\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"a\",\r\n \"abc\",\r\n \"dd\"\r\n ],\r\n \"minCreationTime\": \"2019-01-01T16:00:00Z\"\r\n }\r\n }\r\n ]\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9lMWJkNTFmNi1mYTI5LTRiOTUtYTMwNy04N2VkYjdkOGQ3OWQ/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Qvb2JqZWN0UmVwbGljYXRpb25Qb2xpY2llcy9hMjU1ZmQ1Ni03MDMyLTQ3ZjItOTBiOC0zZjgzNDNiZWUyNzE/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "42834de9-7356-40c8-b1ad-f99bf3730ef3" + "919b55cf-fff1-4b46-a914-7b9541c2b0e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2802,28 +3264,34 @@ "no-cache" ], "x-ms-request-id": [ - "ba93c20d-7dc2-4188-8040-04adb444aaa5" + "87518664-1f38-4d57-8988-7d5c0217ae94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14997" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" ], "x-ms-correlation-request-id": [ - "0259a6e0-bf2d-4f10-b02d-8b59395e971a" + "9dd64d8d-1e4c-4a25-a987-aa1ffb2f1547" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050300Z:0259a6e0-bf2d-4f10-b02d-8b59395e971a" + "SOUTHEASTASIA:20250306T082931Z:9dd64d8d-1e4c-4a25-a987-aa1ffb2f1547" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: E6930F91658D4696B9E2DF8B2CA642AA Ref B: MAA201060515025 Ref C: 2025-03-06T08:29:30Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:00 GMT" + "Thu, 06 Mar 2025 08:29:31 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2839,24 +3307,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src/objectReplicationPolicies/e1bd51f6-fa29-4b95-a307-87edb7d8d79d?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2UxYmQ1MWY2LWZhMjktNGI5NS1hMzA3LTg3ZWRiN2Q4ZDc5ZD9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src/objectReplicationPolicies/a255fd56-7032-47f2-90b8-3f8343bee271?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYy9vYmplY3RSZXBsaWNhdGlvblBvbGljaWVzL2EyNTVmZDU2LTcwMzItNDdmMi05MGI4LTNmODM0M2JlZTI3MT9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "48dedf42-24be-44b2-8310-1ffee02cd694" + "fee3d8bf-52f0-42e3-95a9-98f172d90bc8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2865,28 +3333,34 @@ "no-cache" ], "x-ms-request-id": [ - "4ca9820a-9710-4c97-9278-848d92f1fb01" + "e9251bac-c682-447e-96c7-39823f9866c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14996" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" ], "x-ms-correlation-request-id": [ - "0fb8557c-bcef-4824-bdb2-85b9b795aa1d" + "af7e5d7a-4629-4cc7-9d2e-aab5f4f6149b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050301Z:0fb8557c-bcef-4824-bdb2-85b9b795aa1d" + "SOUTHEASTASIA:20250306T082932Z:af7e5d7a-4629-4cc7-9d2e-aab5f4f6149b" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 41DF28949A2943BF906772FB6DC737C9 Ref B: MAA201060515035 Ref C: 2025-03-06T08:29:32Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:01 GMT" + "Thu, 06 Mar 2025 08:29:32 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2902,24 +3376,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503src?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM3NyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614src?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNHNyYz9hcGktdmVyc2lvbj0yMDI0LTAxLTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34f7bf98-c514-46b8-b8ce-8bd0246fc3c5" + "febe2b21-a55b-41dc-a4e3-fd76ad664c77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2928,28 +3402,34 @@ "no-cache" ], "x-ms-request-id": [ - "7d87cf5a-6636-4a48-9826-da74ecec1faf" + "499b9c91-2428-4684-a4ce-7c56670a7be9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14995" + "800" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "12000" ], "x-ms-correlation-request-id": [ - "e9dbb54b-cecb-48ad-b13e-97e9fd30f610" + "3dc19e0d-ff68-4601-a199-509c19d172d2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050311Z:e9dbb54b-cecb-48ad-b13e-97e9fd30f610" + "SOUTHEASTASIA:20250306T082942Z:3dc19e0d-ff68-4601-a199-509c19d172d2" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 262BD7D42C8C49D5B33DA9B8EDE5A91C Ref B: MAA201060513047 Ref C: 2025-03-06T08:29:33Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:11 GMT" + "Thu, 06 Mar 2025 08:29:42 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2965,24 +3445,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg1503/providers/Microsoft.Storage/storageAccounts/stopstestrg1503dest?api-version=2024-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMTUwMy9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMTUwM2Rlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg9614/providers/Microsoft.Storage/storageAccounts/stopstestrg9614dest?api-version=2024-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTYxNC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTYxNGRlc3Q/YXBpLXZlcnNpb249MjAyNC0wMS0wMQ==", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18dcbee7-c4a2-4603-aafb-8aa6116fe963" + "f3e05d6e-974b-4875-8ae0-900281e7638f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/23.0.0.0" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Storage.StorageManagementClient/8.1.0" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -2991,28 +3471,34 @@ "no-cache" ], "x-ms-request-id": [ - "390179a6-1d5b-4150-aa9c-2c1d78cb9d7c" + "ef5c5ca0-2b4c-43ff-bf9e-3fea3b23bcfb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14994" + "800" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "12000" ], "x-ms-correlation-request-id": [ - "2723b79a-843d-4e72-80e9-c5f42117983b" + "4731ae08-b334-4e95-9cbe-42831459ef95" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050315Z:2723b79a-843d-4e72-80e9-c5f42117983b" + "SOUTHEASTASIA:20250306T082950Z:4731ae08-b334-4e95-9cbe-42831459ef95" ], "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 438243FD632C461294C6C32CE15D6342 Ref B: MAA201060516009 Ref C: 2025-03-06T08:29:42Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:15 GMT" + "Thu, 06 Mar 2025 08:29:49 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -3028,24 +3514,24 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg1503?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMTUwMz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg9614?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTYxND9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", - "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "14015658-9b75-4131-81c2-a29b8230f094" + "80e2c72f-38bd-41b6-aa77-1b311f19fd2e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3054,22 +3540,25 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MDMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk2MTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01&t=638768465955553199&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=RNSIp1ZVxhcu2KXN0c89kzfg36Adfb484Y4w9m2Bm_rK7WcGJgWBfN93tlYLEfh1vRo4a7AdUm3Bplsf02FL2KkEvb-t4mDI9G9GKUkNAg5hgEoGQhTdhHXXkKdUbM7Z8k9HkKyoOPsCo3jOlM5EJMsQ6auxMTSPNZU6Vz3tKQGkilLrA11xIyfWscPgJLZ-nJGy1ODikt0NZ5iMZYbh4LYVOA5kCnt54qnTf34AJESsZPmUIqF121LI9qFJXHimFT3Tnqz3ZjQPagpiukDMykvfsGp6C3GquKAr3qfsRRB2I3wrE11R1yIVXNiMBVZvKyz_RFhyYoE_E4XmB5hQkQ&h=8OBlNaoOzQCi1glos8lhCtO5zUWELaet6tbdk_waWSE" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "799" + ], + "x-ms-ratelimit-remaining-subscription-global-deletes": [ + "11999" ], "x-ms-request-id": [ - "129e3dfd-ad3a-473a-95fd-463ecf328c63" + "18f74b51-b7b0-4af7-9479-6302087ab982" ], "x-ms-correlation-request-id": [ - "129e3dfd-ad3a-473a-95fd-463ecf328c63" + "18f74b51-b7b0-4af7-9479-6302087ab982" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050319Z:129e3dfd-ad3a-473a-95fd-463ecf328c63" + "SOUTHEASTASIA:20250306T082955Z:18f74b51-b7b0-4af7-9479-6302087ab982" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3077,8 +3566,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 3E143B1609CE437E8F3196C7DE73AB5B Ref B: MAA201060513029 Ref C: 2025-03-06T08:29:51Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:18 GMT" + "Thu, 06 Mar 2025 08:29:55 GMT" ], "Expires": [ "-1" @@ -3091,18 +3586,18 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MDMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTURNdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk2MTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01&t=638768465955553199&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=RNSIp1ZVxhcu2KXN0c89kzfg36Adfb484Y4w9m2Bm_rK7WcGJgWBfN93tlYLEfh1vRo4a7AdUm3Bplsf02FL2KkEvb-t4mDI9G9GKUkNAg5hgEoGQhTdhHXXkKdUbM7Z8k9HkKyoOPsCo3jOlM5EJMsQ6auxMTSPNZU6Vz3tKQGkilLrA11xIyfWscPgJLZ-nJGy1ODikt0NZ5iMZYbh4LYVOA5kCnt54qnTf34AJESsZPmUIqF121LI9qFJXHimFT3Tnqz3ZjQPagpiukDMykvfsGp6C3GquKAr3qfsRRB2I3wrE11R1yIVXNiMBVZvKyz_RFhyYoE_E4XmB5hQkQ&h=8OBlNaoOzQCi1glos8lhCtO5zUWELaet6tbdk_waWSE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemsyTVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAxJnQ9NjM4NzY4NDY1OTU1NTUzMTk5JmM9TUlJSHBUQ0NCbzJnQXdJQkFnSVRmd1RibjgyOER1Y21tajI0TWdBRUJOdWZ6VEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURJd0hoY05NalV3TVRJMU1USTFNVFV6V2hjTk1qVXdOekkwTVRJMU1UVXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTDIwVEpRSmJoVjVKcnd6bi1maUdyYWdfQ09qbWFUd0R5OUlyMG9lMUNMSWZpSjlhZ2VCVmZjRW1XLWs1YlVWTDNlZzZCOG1RVEVZRS1GSkRWVlo0amJKOVF3OFJFcG0ya0JBU0RSd29JdFZWRF9IQnBKZjFWaGRWaUVQSlBNRHZMZzBtQW1kZTBYMm0zSFZFTzZZN2VnZ0o5aUwzMUREdjlQRi1Ydm42eDl4bFd2TzNfT0NKUmVPb1ZfSENURHl6ZHM0UHE5T3lTbG5BR0FvektZek91bWJjVlB6X1dFTWNfdndXODBmalFMbWRpaEpncDZfMTVxbG5NZHg0OE1RaFZHVDN5NGdkYmtuTVFKZ2h5elRGY3NBU1ZuY1NxdG16OG5BeDVxVDlkWjYzaWFGNkU3RmJ4NzZmbkY0bHg1SzcyQU5YNWNqbGZWT2lnNWp6Z2Y4UlBrQ0F3RUFBYU9DQkpJd2dnU09NQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd01pZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREF5S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdNaWcwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCUXA4RFdfb2tqVE1iSUJXQU5DdlFyX0ZydnphekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCU3VlY0pyWFNXSUV3YjJCd25EbDN4N2w0OGRWVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFBNXNPeUtYY1F3UVFBVkt6OUo4R0lqVnltWmtvSFZTZnQ0VHFkZ054U2RvSUFZa2tfdFlkeF9kRVpDaEpmU3ZJZnpoekFiOGs1N0VIUktOd0t0UDc1MlNTVXIwUTBvQjYwWTNGcTdpbDFmTUtGVGJWazlaTVR5T29vM2hKbVJ3SmFpc3Y5cksyVVZIV3Z3RDJpVUtEMElLX3RId3kzbTZicWJHRFZLYVJuMUs5VVlNMzl3RXZFZHktazhKMnozT2xmbjZ5WXBjclZCSFd6RHpTeTdUVmRnVXphYTBJWjY3MGFKR1ByTlZZTXZzQ2VwUDJfVF9GZEhWazRMb0s5SzRfMC1Ha1pidkJMWlBRTzZGWWd0dGc3OHM2Tm4zNFRVY1hXZVRlZVhBcmxrZjQ4cmJlTDVmRFlfQ0p5S1lYTHYzYXJ3RzdnVWRjVTVUOE1HSGVMTHpjeW8mcz1STlNJcDFaVnhoY3UyS1hOMGM4OWt6ZmczNkFkZmI0ODRZNHc5bTJCbV9ySzdXY0dKZ1dCZk45M3RsWUxFZmgxdlJvNGE3QWRVbTNCcGxzZjAyRkwyS2tFdmItdDRtREk5RzlHS1VrTkFnNWhnRW9HUWhUZGhIWFhrS2RVYk03WjhrOUhrS3lvT1BzQ28zak9sTTVFSk1zUTZhdXhNVFNQTlpVNlZ6M3RLUUdraWxMckExMXhJeWZXc2NQZ0pMWi1uSkd5MU9EaWt0ME5aNWlNWlliaDRMWVZPQTVrQ250NTRxblRmMzRBSkVTc1pQbVVJcUYxMjFMSTlxRkpYSGltRlQzVG5xejNaalFQYWdwaXVrRE15a3Zmc0dwNkMzR3F1S0FyM3Fmc1JSQjJJM3dyRTExUjF5SVZYTmlNQlZadkt5el9SRmh5WW9FX0U0WG1CNWhRa1EmaD04T0JsTmFvT3pRQ2kxZ2xvczhsaEN0TzV6VVdFTGFldDZ0YmRrX3dhV1NF", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3111,16 +3606,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-request-id": [ - "76c0312a-d175-4925-a504-009194c78e3b" + "7bb93277-02db-444b-8621-7dd618bc2103" ], "x-ms-correlation-request-id": [ - "76c0312a-d175-4925-a504-009194c78e3b" + "7bb93277-02db-444b-8621-7dd618bc2103" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050334Z:76c0312a-d175-4925-a504-009194c78e3b" + "SOUTHEASTASIA:20250306T083011Z:7bb93277-02db-444b-8621-7dd618bc2103" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3128,8 +3626,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: F5666CD4AE3C4EB3A78AC1A7EC0F1A04 Ref B: MAA201060513029 Ref C: 2025-03-06T08:30:10Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:33 GMT" + "Thu, 06 Mar 2025 08:30:11 GMT" ], "Expires": [ "-1" @@ -3142,18 +3646,18 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzE1MDMtRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekUxTURNdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzk2MTQtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01&t=638768465955553199&c=MIIHpTCCBo2gAwIBAgITfwTbn828Ducmmj24MgAEBNufzTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwMTI1MTI1MTUzWhcNMjUwNzI0MTI1MTUzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL20TJQJbhV5Jrwzn-fiGrag_COjmaTwDy9Ir0oe1CLIfiJ9ageBVfcEmW-k5bUVL3eg6B8mQTEYE-FJDVVZ4jbJ9Qw8REpm2kBASDRwoItVVD_HBpJf1VhdViEPJPMDvLg0mAmde0X2m3HVEO6Y7eggJ9iL31DDv9PF-Xvn6x9xlWvO3_OCJReOoV_HCTDyzds4Pq9OySlnAGAozKYzOumbcVPz_WEMc_vwW80fjQLmdihJgp6_15qlnMdx48MQhVGT3y4gdbknMQJghyzTFcsASVncSqtmz8nAx5qT9dZ63iaF6E7Fbx76fnF4lx5K72ANX5cjlfVOig5jzgf8RPkCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBQp8DW_okjTMbIBWANCvQr_FrvzazAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAA5sOyKXcQwQQAVKz9J8GIjVymZkoHVSft4TqdgNxSdoIAYkk_tYdx_dEZChJfSvIfzhzAb8k57EHRKNwKtP752SSUr0Q0oB60Y3Fq7il1fMKFTbVk9ZMTyOoo3hJmRwJaisv9rK2UVHWvwD2iUKD0IK_tHwy3m6bqbGDVKaRn1K9UYM39wEvEdy-k8J2z3Olfn6yYpcrVBHWzDzSy7TVdgUzaa0IZ670aJGPrNVYMvsCepP2_T_FdHVk4LoK9K4_0-GkZbvBLZPQO6FYgttg78s6Nn34TUcXWeTeeXArlkf48rbeL5fDY_CJyKYXLv3arwG7gUdcU5T8MGHeLLzcyo&s=RNSIp1ZVxhcu2KXN0c89kzfg36Adfb484Y4w9m2Bm_rK7WcGJgWBfN93tlYLEfh1vRo4a7AdUm3Bplsf02FL2KkEvb-t4mDI9G9GKUkNAg5hgEoGQhTdhHXXkKdUbM7Z8k9HkKyoOPsCo3jOlM5EJMsQ6auxMTSPNZU6Vz3tKQGkilLrA11xIyfWscPgJLZ-nJGy1ODikt0NZ5iMZYbh4LYVOA5kCnt54qnTf34AJESsZPmUIqF121LI9qFJXHimFT3Tnqz3ZjQPagpiukDMykvfsGp6C3GquKAr3qfsRRB2I3wrE11R1yIVXNiMBVZvKyz_RFhyYoE_E4XmB5hQkQ&h=8OBlNaoOzQCi1glos8lhCtO5zUWELaet6tbdk_waWSE", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemsyTVRRdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAxJnQ9NjM4NzY4NDY1OTU1NTUzMTk5JmM9TUlJSHBUQ0NCbzJnQXdJQkFnSVRmd1RibjgyOER1Y21tajI0TWdBRUJOdWZ6VEFOQmdrcWhraUc5dzBCQVFzRkFEQkVNUk13RVFZS0NaSW1pWlB5TEdRQkdSWURSMEpNTVJNd0VRWUtDWkltaVpQeUxHUUJHUllEUVUxRk1SZ3dGZ1lEVlFRREV3OUJUVVVnU1c1bWNtRWdRMEVnTURJd0hoY05NalV3TVRJMU1USTFNVFV6V2hjTk1qVXdOekkwTVRJMU1UVXpXakJBTVQ0d1BBWURWUVFERXpWaGMzbHVZMjl3WlhKaGRHbHZibk5wWjI1cGJtZGpaWEowYVdacFkyRjBaUzV0WVc1aFoyVnRaVzUwTG1GNmRYSmxMbU52YlRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDQVFvQ2dnRUJBTDIwVEpRSmJoVjVKcnd6bi1maUdyYWdfQ09qbWFUd0R5OUlyMG9lMUNMSWZpSjlhZ2VCVmZjRW1XLWs1YlVWTDNlZzZCOG1RVEVZRS1GSkRWVlo0amJKOVF3OFJFcG0ya0JBU0RSd29JdFZWRF9IQnBKZjFWaGRWaUVQSlBNRHZMZzBtQW1kZTBYMm0zSFZFTzZZN2VnZ0o5aUwzMUREdjlQRi1Ydm42eDl4bFd2TzNfT0NKUmVPb1ZfSENURHl6ZHM0UHE5T3lTbG5BR0FvektZek91bWJjVlB6X1dFTWNfdndXODBmalFMbWRpaEpncDZfMTVxbG5NZHg0OE1RaFZHVDN5NGdkYmtuTVFKZ2h5elRGY3NBU1ZuY1NxdG16OG5BeDVxVDlkWjYzaWFGNkU3RmJ4NzZmbkY0bHg1SzcyQU5YNWNqbGZWT2lnNWp6Z2Y4UlBrQ0F3RUFBYU9DQkpJd2dnU09NQ2NHQ1NzR0FRUUJnamNWQ2dRYU1CZ3dDZ1lJS3dZQkJRVUhBd0V3Q2dZSUt3WUJCUVVIQXdJd1BRWUpLd1lCQkFHQ054VUhCREF3TGdZbUt3WUJCQUdDTnhVSWhwRGpEWVRWdEhpRThZcy1oWnZkRnM2ZEVvRmdoZm1SUzRXc21UUUNBV1FDQVFjd2dnSGFCZ2dyQmdFRkJRY0JBUVNDQWN3d2dnSElNR1lHQ0NzR0FRVUZCekFDaGxwb2RIUndPaTh2WTNKc0xtMXBZM0p2YzI5bWRDNWpiMjB2Y0d0cGFXNW1jbUV2UTJWeWRITXZRa3d5VUV0SlNVNVVRMEV3TVM1QlRVVXVSMEpNWDBGTlJTVXlNRWx1Wm5KaEpUSXdRMEVsTWpBd01pZzBLUzVqY25Rd1ZnWUlLd1lCQlFVSE1BS0dTbWgwZEhBNkx5OWpjbXd4TG1GdFpTNW5ZbXd2WVdsaEwwSk1NbEJMU1VsT1ZFTkJNREV1UVUxRkxrZENURjlCVFVVbE1qQkpibVp5WVNVeU1FTkJKVEl3TURJb05Da3VZM0owTUZZR0NDc0dBUVVGQnpBQ2hrcG9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMkZwWVM5Q1RESlFTMGxKVGxSRFFUQXhMa0ZOUlM1SFFreGZRVTFGSlRJd1NXNW1jbUVsTWpCRFFTVXlNREF5S0RRcExtTnlkREJXQmdnckJnRUZCUWN3QW9aS2FIUjBjRG92TDJOeWJETXVZVzFsTG1kaWJDOWhhV0V2UWt3eVVFdEpTVTVVUTBFd01TNUJUVVV1UjBKTVgwRk5SU1V5TUVsdVpuSmhKVEl3UTBFbE1qQXdNaWcwS1M1amNuUXdWZ1lJS3dZQkJRVUhNQUtHU21oMGRIQTZMeTlqY213MExtRnRaUzVuWW13dllXbGhMMEpNTWxCTFNVbE9WRU5CTURFdVFVMUZMa2RDVEY5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKME1CMEdBMVVkRGdRV0JCUXA4RFdfb2tqVE1iSUJXQU5DdlFyX0ZydnphekFPQmdOVkhROEJBZjhFQkFNQ0JhQXdnZ0UxQmdOVkhSOEVnZ0VzTUlJQktEQ0NBU1NnZ2dFZ29JSUJISVpDYUhSMGNEb3ZMMk55YkM1dGFXTnliM052Wm5RdVkyOXRMM0JyYVdsdVpuSmhMME5TVEM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNUzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNaTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNNeTVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc2hqUm9kSFJ3T2k4dlkzSnNOQzVoYldVdVoySnNMMk55YkM5QlRVVWxNakJKYm1aeVlTVXlNRU5CSlRJd01ESW9OQ2t1WTNKc01JR2RCZ05WSFNBRWdaVXdnWkl3REFZS0t3WUJCQUdDTjNzQkFUQm1CZ29yQmdFRUFZSTNld0lDTUZnd1ZnWUlLd1lCQlFVSEFnSXdTaDVJQURNQU13QmxBREFBTVFBNUFESUFNUUF0QURRQVpBQTJBRFFBTFFBMEFHWUFPQUJqQUMwQVlRQXdBRFVBTlFBdEFEVUFZZ0JrQUdFQVpnQm1BR1FBTlFCbEFETUFNd0JrTUF3R0Npc0dBUVFCZ2pkN0F3SXdEQVlLS3dZQkJBR0NOM3NFQWpBZkJnTlZIU01FR0RBV2dCU3VlY0pyWFNXSUV3YjJCd25EbDN4N2w0OGRWVEFkQmdOVkhTVUVGakFVQmdnckJnRUZCUWNEQVFZSUt3WUJCUVVIQXdJd0RRWUpLb1pJaHZjTkFRRUxCUUFEZ2dFQkFBNXNPeUtYY1F3UVFBVkt6OUo4R0lqVnltWmtvSFZTZnQ0VHFkZ054U2RvSUFZa2tfdFlkeF9kRVpDaEpmU3ZJZnpoekFiOGs1N0VIUktOd0t0UDc1MlNTVXIwUTBvQjYwWTNGcTdpbDFmTUtGVGJWazlaTVR5T29vM2hKbVJ3SmFpc3Y5cksyVVZIV3Z3RDJpVUtEMElLX3RId3kzbTZicWJHRFZLYVJuMUs5VVlNMzl3RXZFZHktazhKMnozT2xmbjZ5WXBjclZCSFd6RHpTeTdUVmRnVXphYTBJWjY3MGFKR1ByTlZZTXZzQ2VwUDJfVF9GZEhWazRMb0s5SzRfMC1Ha1pidkJMWlBRTzZGWWd0dGc3OHM2Tm4zNFRVY1hXZVRlZVhBcmxrZjQ4cmJlTDVmRFlfQ0p5S1lYTHYzYXJ3RzdnVWRjVTVUOE1HSGVMTHpjeW8mcz1STlNJcDFaVnhoY3UyS1hOMGM4OWt6ZmczNkFkZmI0ODRZNHc5bTJCbV9ySzdXY0dKZ1dCZk45M3RsWUxFZmgxdlJvNGE3QWRVbTNCcGxzZjAyRkwyS2tFdmItdDRtREk5RzlHS1VrTkFnNWhnRW9HUWhUZGhIWFhrS2RVYk03WjhrOUhrS3lvT1BzQ28zak9sTTVFSk1zUTZhdXhNVFNQTlpVNlZ6M3RLUUdraWxMckExMXhJeWZXc2NQZ0pMWi1uSkd5MU9EaWt0ME5aNWlNWlliaDRMWVZPQTVrQ250NTRxblRmMzRBSkVTc1pQbVVJcUYxMjFMSTlxRkpYSGltRlQzVG5xejNaalFQYWdwaXVrRE15a3Zmc0dwNkMzR3F1S0FyM3Fmc1JSQjJJM3dyRTExUjF5SVZYTmlNQlZadkt5el9SRmh5WW9FX0U0WG1CNWhRa1EmaD04T0JsTmFvT3pRQ2kxZ2xvczhsaEN0TzV6VVdFTGFldDZ0YmRrX3dhV1NF", "RequestMethod": "GET", - "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/6.0.3624.51421", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.19043.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.45" + "OSVersion/Microsoft.Windows.10.0.26100", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.104" ] }, + "RequestBody": "", "ResponseHeaders": { "Cache-Control": [ "no-cache" @@ -3162,16 +3666,19 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "1099" + ], + "x-ms-ratelimit-remaining-subscription-global-reads": [ + "16499" ], "x-ms-request-id": [ - "5ccd4be6-4d40-4c06-a756-08517d5692a8" + "dce3fa3b-b4af-45cb-b697-eabece4bac29" ], "x-ms-correlation-request-id": [ - "5ccd4be6-4d40-4c06-a756-08517d5692a8" + "dce3fa3b-b4af-45cb-b697-eabece4bac29" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20210928T050335Z:5ccd4be6-4d40-4c06-a756-08517d5692a8" + "SOUTHEASTASIA:20250306T083012Z:dce3fa3b-b4af-45cb-b697-eabece4bac29" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -3179,8 +3686,14 @@ "X-Content-Type-Options": [ "nosniff" ], + "X-Cache": [ + "CONFIG_NOCACHE" + ], + "X-MSEdge-Ref": [ + "Ref A: 669A988A2C804432B762C4421AA77E26 Ref B: MAA201060513029 Ref C: 2025-03-06T08:30:11Z" + ], "Date": [ - "Tue, 28 Sep 2021 05:03:34 GMT" + "Thu, 06 Mar 2025 08:30:12 GMT" ], "Expires": [ "-1" @@ -3195,7 +3708,7 @@ ], "Names": { "Test-StorageBlobORS": [ - "pstestrg1503" + "pstestrg9614" ] }, "Variables": { diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index fbda1ce36ea9..ad887c606d34 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,8 @@ - Additional information about change #1 --> ## Upcoming Release +* Supported Enable Metrics when set object replication policy + - `Set-AzStorageObjectReplicationPolicy` ## Version 9.1.0 * Supported set SasExpirationAction as Log or Block, together with SasExpirationPeriod diff --git a/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs b/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs index 73d48e2a5a31..959aab0fc84d 100644 --- a/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs +++ b/src/Storage/Storage.Management/Models/PSObjectReplicationPolicy.cs @@ -43,6 +43,7 @@ public class PSObjectReplicationPolicy public string DestinationAccount { get; set; } [Ps1Xml(Label = "Rules", Target = ViewControl.Table, ScriptBlock = "if (($_.Rules -ne $null) -and ($_.Rules.Count -ne 0)) {'[' + $_.Rules[0].RuleId + ',...]'} else {$null}", Position = 6)] public PSObjectReplicationPolicyRule[] Rules { get; set; } + public PSObjectReplicationPolicyPropertiesMetrics Metrics { get; set; } public PSObjectReplicationPolicy() { } @@ -59,6 +60,7 @@ public PSObjectReplicationPolicy(ObjectReplicationPolicy policy, string Resource this.SourceAccount = policy.SourceAccount; this.DestinationAccount = policy.DestinationAccount; this.Rules = PSObjectReplicationPolicyRule.GetPSObjectReplicationPolicyRules(policy.Rules); + this.Metrics = policy.Metrics is null ? null : new PSObjectReplicationPolicyPropertiesMetrics(policy.Metrics); } public ObjectReplicationPolicy ParseObjectReplicationPolicy() @@ -67,7 +69,8 @@ public ObjectReplicationPolicy ParseObjectReplicationPolicy() { SourceAccount = this.SourceAccount, DestinationAccount = this.DestinationAccount, - Rules = PSObjectReplicationPolicyRule.ParseObjectReplicationPolicyRules(this.Rules) + Rules = PSObjectReplicationPolicyRule.ParseObjectReplicationPolicyRules(this.Rules), + Metrics = this.Metrics is null ? null : this.Metrics.ParseObjectReplicationPolicyPropertiesMetrics() }; return policy; } @@ -193,4 +196,28 @@ public ObjectReplicationPolicyFilter ParseObjectReplicationPolicyFilter() }; } } + + /// + /// Wrapper of SDK type ObjectReplicationPolicyPropertiesMetrics + /// + public class PSObjectReplicationPolicyPropertiesMetrics + { + public bool? Enabled { get; set; } + + public PSObjectReplicationPolicyPropertiesMetrics() + { + } + + public PSObjectReplicationPolicyPropertiesMetrics(ObjectReplicationPolicyPropertiesMetrics metrics) + { + this.Enabled = metrics.Enabled; + } + public ObjectReplicationPolicyPropertiesMetrics ParseObjectReplicationPolicyPropertiesMetrics() + { + return new ObjectReplicationPolicyPropertiesMetrics() + { + Enabled = this.Enabled + }; + } + } } diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index cf7f02b94c69..54d3c57a19f8 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -653,6 +653,10 @@ Left + + Left + + Left @@ -685,6 +689,10 @@ Left DestinationAccount + + Left + $_.Metrics.Enabled + Left if (($_.Rules -ne $null) -and ($_.Rules.Count -ne 0)) { if ($_.Rules.Count -eq 1) {'[' + $_.Rules[0].RuleId + ']'} else {'[' + $_.Rules[0].RuleId + ',...]'}} else {$null} diff --git a/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs b/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs index 1a8a44340039..b231fb19124c 100644 --- a/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs +++ b/src/Storage/Storage.Management/StorageAccount/SetAzStorageObjectReplicationPolicy.cs @@ -125,6 +125,27 @@ public string PolicyId [ValidateNotNullOrEmpty] public string DestinationAccount { get; set; } + [Parameter( + Mandatory = false, + HelpMessage = "Indicates whether object replication metrics feature is enabled for the policy.", + ParameterSetName = AccountNameParameterSet)] + [Parameter( + Mandatory = false, + HelpMessage = "Indicates whether object replication metrics feature is enabled for the policy.", + ParameterSetName = AccountObjectParameterSet)] + public bool EnableMetric + { + get + { + return enableMetric.Value; + } + set + { + enableMetric = value; + } + } + private bool? enableMetric = null; + [Parameter( Mandatory = true, HelpMessage = "Object Replication Policy Rules.", @@ -182,6 +203,13 @@ public override void ExecuteCmdlet() DestinationAccount = this.DestinationAccount, Rules = PSObjectReplicationPolicyRule.ParseObjectReplicationPolicyRules(this.Rule) }; + if (this.enableMetric != null) + { + policyToSet.Metrics = new ObjectReplicationPolicyPropertiesMetrics() + { + Enabled = this.enableMetric + }; + } } ObjectReplicationPolicy policy = this.StorageClient.ObjectReplicationPolicies.CreateOrUpdate( diff --git a/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md b/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md index b569cd7f21e5..6c6052ae9f5b 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageObjectReplicationPolicy.md @@ -15,23 +15,23 @@ Creates or updates the specified object replication policy in a Storage account. ### AccountName (Default) ``` Set-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] - [-PolicyId ] -SourceAccount [-DestinationAccount ] - -Rule [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + [-PolicyId ] -SourceAccount [-DestinationAccount ] [-EnableMetric ] + -Rule [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### PolicyObject ``` Set-AzStorageObjectReplicationPolicy [-ResourceGroupName] [-StorageAccountName] - -InputObject [-DefaultProfile ] - [-WhatIf] [-Confirm] [] + -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### AccountObject ``` Set-AzStorageObjectReplicationPolicy -StorageAccount [-PolicyId ] - -SourceAccount [-DestinationAccount ] -Rule - [-DefaultProfile ] [-WhatIf] [-Confirm] + -SourceAccount [-DestinationAccount ] [-EnableMetric ] + -Rule [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -51,7 +51,7 @@ $rule2 = New-AzStorageObjectReplicationPolicyRule -SourceContainer src -Destinat $srcAccount = Get-AzStorageAccount -ResourceGroupName "myresourcegroup" -AccountName "mysourceaccount" -Set-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mydestaccount" -PolicyId default -SourceAccount $srcAccount.Id -Rule $rule1,$rule2 +Set-AzStorageObjectReplicationPolicy -ResourceGroupName "myresourcegroup" -AccountName "mydestaccount" -PolicyId default -SourceAccount $srcAccount.Id -Rule $rule1,$rule2 -EnableMetric $true ResourceGroupName StorageAccountName PolicyId EnabledTime SourceAccount DestinationAccount Rules ----------------- ------------------ -------- ----------- ------------- ------------------ ----- @@ -67,7 +67,7 @@ myresourcegroup mysourceaccount 56bfa11c-81ef-4f8d-b307-5e5386e16fba ``` This command sets object replication policy to both destination and source account. -First create 2 object replication policy rules, and set policy to destination account with the 2 rules and source account resource Id. Then get the object replication policy from destination account and set to source account. +First create 2 object replication policy rules, and set policy to destination account with the 2 rules and source account resource Id, and enable metrics. Then get the object replication policy from destination account and set to source account. Please note, when storage account has AllowCrossTenantReplication as false, SourceAccount and DestinationAccount should be account resource Id. ## PARAMETERS @@ -102,6 +102,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableMetric +Indicates whether object replication metrics feature is enabled for the policy. + +```yaml +Type: System.Boolean +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -InputObject Object Replication Policy Object to Set to the specified Account.