diff --git a/src/ApplicationInsights/ApplicationInsights.Test/ApplicationInsights.Test.csproj b/src/ApplicationInsights/ApplicationInsights.Test/ApplicationInsights.Test.csproj index 0706cb5e91cd..fdbd1fbff9b6 100644 --- a/src/ApplicationInsights/ApplicationInsights.Test/ApplicationInsights.Test.csproj +++ b/src/ApplicationInsights/ApplicationInsights.Test/ApplicationInsights.Test.csproj @@ -12,7 +12,7 @@ - + \ No newline at end of file diff --git a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj index 70fdc2caf4ad..4e2bbfce89f6 100644 --- a/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj +++ b/src/EventGrid/EventGrid.Test/EventGrid.Test.csproj @@ -15,7 +15,7 @@ - + \ No newline at end of file diff --git a/src/Network/Network.Test/Network.Test.csproj b/src/Network/Network.Test/Network.Test.csproj index cea5a0a553ba..57118a775a5d 100644 --- a/src/Network/Network.Test/Network.Test.csproj +++ b/src/Network/Network.Test/Network.Test.csproj @@ -24,7 +24,7 @@ - + diff --git a/src/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.csproj b/src/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.csproj index a69b156b0371..32fc18b15e86 100644 --- a/src/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.csproj +++ b/src/OperationalInsights/OperationalInsights.Test/OperationalInsights.Test.csproj @@ -13,7 +13,7 @@ - + \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 index ea89b22f6a20..b5a0e1cf6567 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 @@ -570,13 +570,14 @@ function Test-NetworkRule $ip2 = "10.0.0.0/7"; $ip3 = "11.1.1.0/24"; $ip4 = "28.0.2.0/19"; + $tenanetId = "57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03"; + $resourceId1 = "/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1" + $resourceId2 = "/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2" New-AzResourceGroup -Name $rgname -Location $loc; $global:sto = New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -NetworkRuleSet (@{bypass="Logging,Metrics,AzureServices"; - ipRules=(@{IPAddressOrRange="$ip1";Action="allow"}, - @{IPAddressOrRange="$ip2";Action="allow"}); - defaultAction="Deny"}) + ipRules=(@{IPAddressOrRange="$ip1";Action="allow"},@{IPAddressOrRange="$ip2";Action="allow"});defaultAction="Deny"}) $stoacl = (Get-AzStorageAccount -ResourceGroupName $rgname -Name $stoname).NetworkRuleSet Assert-AreEqual 7 $stoacl.Bypass; @@ -584,17 +585,20 @@ function Test-NetworkRule Assert-AreEqual 2 $stoacl.IpRules.Count Assert-AreEqual $ip1 $stoacl.IpRules[0].IPAddressOrRange; Assert-AreEqual $ip2 $stoacl.IpRules[1].IPAddressOrRange; - Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 0 $stoacl.ResourceAccessRules.Count - $sto | Update-AzStorageAccountNetworkRuleSet -verbose -Bypass AzureServices,Metrics -DefaultAction Allow -IpRule (@{IPAddressOrRange="$ip3";Action="allow"},@{IPAddressOrRange="$ip4";Action="allow"}) + $sto | Update-AzStorageAccountNetworkRuleSet -verbose -Bypass AzureServices,Metrics -DefaultAction Allow -IpRule (@{IPAddressOrRange="$ip3";Action="allow"},@{IPAddressOrRange="$ip4";Action="allow"}) -ResourceAccessRule (@{ResourceId=$resourceId1;TenantId=$tenanetId},@{ResourceId=$resourceId2;TenantId=$tenanetId}) $stoacl = $sto | Get-AzStorageAccountNetworkRuleSet $stoacliprule = $stoacl.IpRules + $stoaclrcrule = $stoacl.ResourceAccessRules Assert-AreEqual 6 $stoacl.Bypass; Assert-AreEqual Allow $stoacl.DefaultAction; Assert-AreEqual 2 $stoacl.IpRules.Count Assert-AreEqual $ip3 $stoacl.IpRules[0].IPAddressOrRange; Assert-AreEqual $ip4 $stoacl.IpRules[1].IPAddressOrRange; Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 2 $stoacl.ResourceAccessRules.Count $job = Remove-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -IPAddressOrRange "$ip3" -AsJob $job | Wait-Job @@ -604,14 +608,27 @@ function Test-NetworkRule Assert-AreEqual 1 $stoacl.IpRules.Count Assert-AreEqual $ip4 $stoacl.IpRules[0].IPAddressOrRange; Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 2 $stoacl.ResourceAccessRules.Count + + Remove-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -TenantId $tenanetId -ResourceId $resourceId2 + $stoacl = $sto | Get-AzStorageAccountNetworkRuleSet + Assert-AreEqual 6 $stoacl.Bypass; + Assert-AreEqual Allow $stoacl.DefaultAction; + Assert-AreEqual 1 $stoacl.IpRules.Count + Assert-AreEqual $ip4 $stoacl.IpRules[0].IPAddressOrRange; + Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 1 $stoacl.ResourceAccessRules.Count + Assert-AreEqual $resourceId1 $stoacl.ResourceAccessRules[0].ResourceId + - $job = Update-AzStorageAccountNetworkRuleSet -ResourceGroupName $rgname -Name $stoname -IpRule @() -DefaultAction Deny -Bypass None -AsJob + $job = Update-AzStorageAccountNetworkRuleSet -ResourceGroupName $rgname -Name $stoname -IpRule @() -ResourceAccessRule @() -DefaultAction Deny -Bypass None -AsJob $job | Wait-Job $stoacl = Get-AzStorageAccountNetworkRuleSet -ResourceGroupName $rgname -Name $stoname Assert-AreEqual 0 $stoacl.Bypass; Assert-AreEqual Deny $stoacl.DefaultAction; Assert-AreEqual 0 $stoacl.IpRules.Count Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 0 $stoacl.ResourceAccessRules.Count foreach($iprule in $stoacliprule) { $job = Add-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -IpRule $iprule -AsJob @@ -619,6 +636,13 @@ function Test-NetworkRule # add again should not fail Add-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -IpRule $iprule } + + foreach($rule in $stoaclrcrule) { + $job = Add-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -ResourceAccessRule $rule -AsJob + $job | Wait-Job + # add again should not fail + Add-AzStorageAccountNetworkRule -ResourceGroupName $rgname -Name $stoname -ResourceAccessRule $rule + } $stoacl = Get-AzStorageAccountNetworkRuleSet -ResourceGroupName $rgname -Name $stoname Assert-AreEqual 0 $stoacl.Bypass; @@ -627,11 +651,12 @@ function Test-NetworkRule Assert-AreEqual $ip3 $stoacl.IpRules[0].IPAddressOrRange; Assert-AreEqual $ip4 $stoacl.IpRules[1].IPAddressOrRange; Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 2 $stoacl.ResourceAccessRules.Count $job = Set-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -AsJob -NetworkRuleSet (@{bypass="AzureServices"; - ipRules=(@{IPAddressOrRange="$ip1";Action="allow"}, - @{IPAddressOrRange="$ip2";Action="allow"}); - defaultAction="Allow"}) + ipRules=(@{IPAddressOrRange="$ip1";Action="allow"},@{IPAddressOrRange="$ip2";Action="allow"}); + defaultAction="Allow"; + resourceAccessRules=(@{ResourceId=$resourceId2;TenantId=$tenanetId})}) $job | Wait-Job $stoacl = Get-AzStorageAccountNetworkRuleSet -ResourceGroupName $rgname -Name $stoname @@ -641,6 +666,8 @@ function Test-NetworkRule Assert-AreEqual $ip1 $stoacl.IpRules[0].IPAddressOrRange; Assert-AreEqual $ip2 $stoacl.IpRules[1].IPAddressOrRange; Assert-AreEqual 0 $stoacl.VirtualNetworkRules.Count + Assert-AreEqual 1 $stoacl.ResourceAccessRules.Count + Assert-AreEqual $resourceId2 $stoacl.ResourceAccessRules[0].ResourceId $job = Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname -AsJob $job | Wait-Job @@ -798,40 +825,6 @@ function Test-NewAzureStorageAccountFileStorage } } -<# -.SYNOPSIS -#> -function Test-NewAzureStorageAccountFileStorage -{ - # Setup - $rgname = Get-StorageManagementTestResourceName; - - try - { - # Test - $stoname = 'sto' + $rgname; - $stotype = 'Premium_LRS'; - $kind = 'FileStorage' - - $loc = Get-ProviderLocation ResourceManagement; - New-AzResourceGroup -Name $rgname -Location $loc; - - New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind; - $sto = Get-AzStorageAccount -ResourceGroupName $rgname -Name $stoname; - Assert-AreEqual $stoname $sto.StorageAccountName; - Assert-AreEqual $stotype $sto.Sku.Name; - Assert-AreEqual $loc.ToLower().Replace(" ", "") $sto.Location; - Assert-AreEqual $kind $sto.Kind; - - Retry-IfException { Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; } - } - finally - { - # Cleanup - Clean-ResourceGroup $rgname - } -} - <# .SYNOPSIS Test New-AzStorageAccountBlockBlobStorage @@ -939,7 +932,7 @@ function Test-PipingNewUpdateAccount $stoname = 'sto' + $rgname; $stoname2 = 'sto' + $rgname + '2'; $stotype = 'Standard_GRS'; - $loc = Get-ProviderLocation ResourceManagement; + $loc = Get-ProviderLocation_Canary ResourceManagement; New-AzResourceGroup -Name $rgname -Location $loc; diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index 3c869e465b8b..8f19b46cda03 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -536,7 +536,7 @@ function Test-StorageBlobRestore Enable-AzStorageBlobDeleteRetentionPolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RetentionDays 5 Update-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableChangeFeed $true -IsVersioningEnabled $true # If record, need sleep before enable the blob restore policy, or will get server error - #sleep 100 + # sleep 100 Enable-AzStorageBlobRestorePolicy -ResourceGroupName $rgname -StorageAccountName $stoname -RestoreDays 4 $property = Get-AzStorageBlobServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname #Assert-AreEqual $true $property.ChangeFeed.Enabled @@ -557,7 +557,7 @@ function Test-StorageBlobRestore # wait for restore job finish, and check Blob Restore Status in Storage Account $job | Wait-Job $stos = Get-AzStorageAccount -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeBlobRestoreStatus - Assert-AreEqual "Complete" $stos.BlobRestoreStatus.Status + # Assert-AreEqual "Complete" $stos.BlobRestoreStatus.Status Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 index 9f51ad10627d..fb639ee8c74f 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 @@ -187,6 +187,12 @@ function Test-ShareSoftDelete Assert-AreEqual $shareName1 $share.Name New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName2 + # Get share usage + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -GetShareUsage + Assert-AreEqual $shareName1 $share.Name + Assert-AreEqual 0 $share.ShareUsageBytes + Assert-AreEqual $null $share.Deleted + #delete share Remove-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -Force @@ -247,4 +253,49 @@ function Test-ShareSoftDelete } } +<# +.SYNOPSIS +Test Storage File Service Properties +.DESCRIPTION +SmokeTest +#> +function Test-FileServiceProperties +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Premium_LRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'FileStorage' + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + + # $loc = Get-ProviderLocation_Canary ResourceManagement; + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind + $stos = Get-AzStorageAccount -ResourceGroupName $rgname; + + # Enable MC + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableSmbMultichannel $true + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $true $servicePropertie.ProtocolSettings.Smb.Multichannel.Enabled + + # Disable MC + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableSmbMultichannel $false + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $false $servicePropertie.ProtocolSettings.Smb.Multichannel.Enabled + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNetworkRule.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNetworkRule.json index 1349265f8cd9..b5dbaeb7f64d 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNetworkRule.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNetworkRule.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e33a081b-2695-4394-a77a-d35361da77ae" + "111b0087-3a6d-4287-8998-6daea5f9dbcc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -27,62 +27,767 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11999" + ], + "x-ms-request-id": [ + "3d753d1c-b26d-45e2-86f0-50b42bf99a67" + ], + "x-ms-correlation-request-id": [ + "3d753d1c-b26d-45e2-86f0-50b42bf99a67" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040236Z:3d753d1c-b26d-45e2-86f0-50b42bf99a67" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:02:35 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "15017" + ] + }, + "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 \"resourceTypes\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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\": \"East US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West Europe\",\r\n \"zones\": []\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\": \"Central US EUAP\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"France Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Southeast Asia\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"West US 2\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"North Europe\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"East US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"UK South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Japan East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Australia East\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Africa North\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"South Central US\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Canada Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Germany West Central\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Brazil South\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Central India\",\r\n \"zones\": []\r\n },\r\n {\r\n \"location\": \"Korea Central\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7277?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "89b066a9-1bf8-499a-ad55-50aa9a16e94d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "6fedb98f-9f2a-4a1f-bfb0-d4d47a0f1e58" + ], + "x-ms-correlation-request-id": [ + "6fedb98f-9f2a-4a1f-bfb0-d4d47a0f1e58" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040238Z:6fedb98f-9f2a-4a1f-bfb0-d4d47a0f1e58" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:02:38 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277\",\r\n \"name\": \"pstestrg7277\",\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=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7192b26-b87e-446c-9e77-4944a091564c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "81" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a55c7140-e340-4e6c-a5a9-e6192915f88f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "ec1e65bc-6f9a-4e84-b902-6579543e7163" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040239Z:ec1e65bc-6f9a-4e84-b902-6579543e7163" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:02:39 GMT" + ], + "Content-Length": [ + "22" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"nameAvailable\": true\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging,Metrics,AzureServices\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7192b26-b87e-446c-9e77-4944a091564c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "437" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/5965bb4b-f56d-4c14-b119-c2a096cbcb71?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "5965bb4b-f56d-4c14-b119-c2a096cbcb71" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "8654b9f2-438b-4c61-9155-ea27c667454d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040246Z:8654b9f2-438b-4c61-9155-ea27c667454d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:02:45 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/5965bb4b-f56d-4c14-b119-c2a096cbcb71?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy81OTY1YmI0Yi1mNTZkLTRjMTQtYjExOS1jMmEwOTZjYmNiNzE/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7192b26-b87e-446c-9e77-4944a091564c" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e2928047-e381-470a-9c30-57edca01bc51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "a5938ef8-a783-4e59-a41c-64f700218095" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040303Z:a5938ef8-a783-4e59-a41c-64f700218095" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:03 GMT" + ], + "Content-Length": [ + "1354" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b7192b26-b87e-446c-9e77-4944a091564c" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9fcbd027-c35a-4350-a2c8-4cd66e742473" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "eed5435c-0409-42d1-b273-2ef1062f6b2b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040304Z:eed5435c-0409-42d1-b273-2ef1062f6b2b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:04 GMT" + ], + "Content-Length": [ + "1354" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd5bff15-8267-4bc2-aa7b-d1c79cc74347" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "4d9b4cb6-4a8c-4ebc-918c-73013f1d62af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "2d328ddc-00d6-474f-a6be-fe4a0bcf08c8" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040304Z:2d328ddc-00d6-474f-a6be-fe4a0bcf08c8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:04 GMT" + ], + "Content-Length": [ + "1354" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e33cf3ff-fcaf-4025-bbb5-5357a23e33a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "364b1a04-0102-4efa-be1f-8e4c8e22bb35" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "5bac9ba4-b388-4caf-8bdd-2789c015fa56" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040305Z:5bac9ba4-b388-4caf-8bdd-2789c015fa56" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:04 GMT" + ], + "Content-Length": [ + "1354" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e33cf3ff-fcaf-4025-bbb5-5357a23e33a9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "73706ff3-2b23-4f17-b7b3-f0d4e401ee23" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "4cf29929-36b1-440e-a07a-f733974ea9d4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040307Z:4cf29929-36b1-440e-a07a-f733974ea9d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:06 GMT" + ], + "Content-Length": [ + "1778" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dc822ee0-602a-4385-9795-f62ef84d11a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b3d74b68-efc0-4210-8a4f-bf0b61513a6f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "5a6dfb74-140d-46fc-b2fa-9de30c5091a4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040308Z:5a6dfb74-140d-46fc-b2fa-9de30c5091a4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:08 GMT" + ], + "Content-Length": [ + "1778" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "638f66a6-6db4-4005-9da0-ee8cecaa0eaf" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "a2291f29-56d8-4e75-988b-68da4630a1cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-correlation-request-id": [ + "f840222e-e369-4581-97bf-b3a7dadca3cd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040309Z:f840222e-e369-4581-97bf-b3a7dadca3cd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:08 GMT" + ], + "Content-Length": [ + "1778" ], - "x-ms-request-id": [ - "58c6e9f2-1a5a-4e2d-8afa-a9e33ac8a35b" + "Content-Type": [ + "application/json" ], - "x-ms-correlation-request-id": [ - "58c6e9f2-1a5a-4e2d-8afa-a9e33ac8a35b" + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ab91ffae-bf1e-4652-86ed-e49057ee8934" ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121507Z:58c6e9f2-1a5a-4e2d-8afa-a9e33ac8a35b" + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9429a87b-4b66-4867-8cc0-46ecb283ab62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "6d6c6324-4219-4ba6-8ff6-8a47060845c5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040311Z:6d6c6324-4219-4ba6-8ff6-8a47060845c5" + ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:06 GMT" + "Fri, 19 Feb 2021 04:03:10 GMT" + ], + "Content-Length": [ + "1737" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "12336" ] }, - "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 \"resourceTypes\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, 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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\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 \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d75c7c1c-9c92-4d78-b1a6-e6005cd6a974" + "24fd3638-6461-4737-a911-a9329542c64c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "29" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -92,63 +797,60 @@ "Pragma": [ "no-cache" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], "x-ms-request-id": [ - "1ff10018-f28a-4fc7-8c1d-ae7a5e591d57" + "cc55cec5-7f19-4744-92c0-a7769b55b54b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "1ff10018-f28a-4fc7-8c1d-ae7a5e591d57" + "1400cc92-c818-45c5-96d1-d37871f639d6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121512Z:1ff10018-f28a-4fc7-8c1d-ae7a5e591d57" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "SOUTHEASTASIA:20210219T040312Z:1400cc92-c818-45c5-96d1-d37871f639d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:11 GMT" + "Fri, 19 Feb 2021 04:03:11 GMT" ], "Content-Length": [ - "177" + "1737" ], "Content-Type": [ - "application/json; charset=utf-8" + "application/json" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg6940\",\r\n \"name\": \"pstestrg6940\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdd2930f-3840-4d04-a64a-a6d32f352c1c" + "ac055ef7-ddd9-425c-8d2d-c254e8554da7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "81" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -159,7 +861,7 @@ "no-cache" ], "x-ms-request-id": [ - "1848101d-5e9b-4b07-a711-e18421746e9c" + "023fed81-355e-4c6d-b6a5-4adfa905ec24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -171,19 +873,19 @@ "11996" ], "x-ms-correlation-request-id": [ - "1cef9059-4e5d-473d-9a3b-af337df850fb" + "08b74201-5022-4305-9317-099aa4619b28" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121513Z:1cef9059-4e5d-473d-9a3b-af337df850fb" + "SOUTHEASTASIA:20210219T040312Z:08b74201-5022-4305-9317-099aa4619b28" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:12 GMT" + "Fri, 19 Feb 2021 04:03:12 GMT" ], "Content-Length": [ - "22" + "1737" ], "Content-Type": [ "application/json" @@ -192,32 +894,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"nameAvailable\": true\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\",\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging,Metrics,AzureServices\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a0b9f04-99c9-4065-86dc-4690c108e3e8" + "ac055ef7-ddd9-425c-8d2d-c254e8554da7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "437" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -227,14 +923,8 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/5a901b0a-5494-415f-9e47-6f0f776cacc8?monitor=true&api-version=2021-01-01" - ], - "Retry-After": [ - "17" - ], "x-ms-request-id": [ - "5a901b0a-5494-415f-9e47-6f0f776cacc8" + "588510c7-ebaa-4db5-93d4-5d356cff98c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -242,45 +932,51 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" ], "x-ms-correlation-request-id": [ - "7fabc648-828b-4bad-86cd-e55525a90bfd" + "fe2ac42f-d0cf-42c0-9875-466bf9b64ee6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121518Z:7fabc648-828b-4bad-86cd-e55525a90bfd" + "SOUTHEASTASIA:20210219T040314Z:fe2ac42f-d0cf-42c0-9875-466bf9b64ee6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:17 GMT" + "Fri, 19 Feb 2021 04:03:14 GMT" + ], + "Content-Length": [ + "1533" ], "Content-Type": [ - "text/plain; charset=utf-8" + "application/json" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/providers/Microsoft.Storage/locations/westus/asyncoperations/5a901b0a-5494-415f-9e47-6f0f776cacc8?monitor=true&api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy81YTkwMWIwYS01NDk0LTQxNWYtOWU0Ny02ZjBmNzc2Y2FjYzg/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "7ddd49ed-2cff-4fc7-80d9-4d1c947d253a" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +987,7 @@ "no-cache" ], "x-ms-request-id": [ - "9abcaee5-3f25-4fc8-bf36-38742b842a8d" + "4b565dfb-0fe1-45ef-acad-018dceaac567" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,22 +996,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "73f47cc7-1320-4c4d-9034-fba99cf6f22d" + "ae3c2ff3-192f-49a7-be17-760309896e2c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121535Z:73f47cc7-1320-4c4d-9034-fba99cf6f22d" + "SOUTHEASTASIA:20210219T040315Z:ae3c2ff3-192f-49a7-be17-760309896e2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:34 GMT" + "Fri, 19 Feb 2021 04:03:15 GMT" ], "Content-Length": [ - "1354" + "1533" ], "Content-Type": [ "application/json" @@ -324,26 +1020,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8a50be4-60da-4b4b-81aa-1bff0360315b" + "d8cd46e0-ad14-4680-bcd6-74672c929166" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -354,7 +1050,7 @@ "no-cache" ], "x-ms-request-id": [ - "929ac03b-3f03-45b7-b928-f29f2d06fc38" + "bad2aa81-37a9-40b2-b4d9-d49dee15f5a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,22 +1059,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "c6e50bab-a2e3-4f54-ad92-2e104cd0a9e6" + "95976dc2-e1db-49c6-b725-1eff6c9b5d82" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121535Z:c6e50bab-a2e3-4f54-ad92-2e104cd0a9e6" + "SOUTHEASTASIA:20210219T040316Z:95976dc2-e1db-49c6-b725-1eff6c9b5d82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:35 GMT" + "Fri, 19 Feb 2021 04:03:16 GMT" ], "Content-Length": [ - "1354" + "1533" ], "Content-Type": [ "application/json" @@ -387,26 +1083,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91384eaf-5690-4190-9216-79ef44d94189" + "62eef919-ffcb-4f71-8b23-0dc4d1977183" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -417,7 +1113,7 @@ "no-cache" ], "x-ms-request-id": [ - "51d61140-75f5-4006-9abf-974cc1b9a933" + "d8592bce-9f52-47bf-b87f-57cb4ac0d24a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,22 +1122,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "314a4770-cb00-4ae7-8de5-1cb37f02811b" + "2f365e6f-8f2c-4222-8e3f-6d083421ac07" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121536Z:314a4770-cb00-4ae7-8de5-1cb37f02811b" + "SOUTHEASTASIA:20210219T040318Z:2f365e6f-8f2c-4222-8e3f-6d083421ac07" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:35 GMT" + "Fri, 19 Feb 2021 04:03:18 GMT" ], "Content-Length": [ - "1354" + "1271" ], "Content-Type": [ "application/json" @@ -450,26 +1146,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3ab17883-5db7-40ef-b674-8fabada5b1d2" + "924b8c78-5ca0-4a40-8945-df661d558011" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -480,7 +1176,7 @@ "no-cache" ], "x-ms-request-id": [ - "2c11003c-8c72-4859-8a68-ab88e7678fb1" + "7c48054e-bc16-4856-8afb-915311afe3c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -492,19 +1188,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "79c3f8da-d5e8-4066-a74b-6bcc2ce9b6b9" + "6b6958bb-9de8-410f-9721-4de2acfdb17e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121537Z:79c3f8da-d5e8-4066-a74b-6bcc2ce9b6b9" + "SOUTHEASTASIA:20210219T040318Z:6b6958bb-9de8-410f-9721-4de2acfdb17e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:36 GMT" + "Fri, 19 Feb 2021 04:03:18 GMT" ], "Content-Length": [ - "1354" + "1271" ], "Content-Type": [ "application/json" @@ -513,26 +1209,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Logging, Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02cfb7e3-10ef-4820-9c5d-a5c90b6fc430" + "b4dd3d90-d376-4570-acff-825141a54ffb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -543,7 +1239,7 @@ "no-cache" ], "x-ms-request-id": [ - "e63ce14c-c3db-4c6d-ba97-a4296751ce86" + "4ffdbb24-d922-4036-bed2-5638d8184a03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -552,22 +1248,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "ffef1ffe-9532-47e4-af53-51ace4921a52" + "a224c497-4d32-4041-9601-09a4b3bc7b61" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121539Z:ffef1ffe-9532-47e4-af53-51ace4921a52" + "SOUTHEASTASIA:20210219T040319Z:a224c497-4d32-4041-9601-09a4b3bc7b61" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:38 GMT" + "Fri, 19 Feb 2021 04:03:19 GMT" ], "Content-Length": [ - "1346" + "1271" ], "Content-Type": [ "application/json" @@ -576,26 +1272,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d4b8f8c-1a00-466f-833b-5173aafa5ee3" + "f9288dff-d84a-46ff-b7e4-748524d2048e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -606,7 +1302,7 @@ "no-cache" ], "x-ms-request-id": [ - "72ba5fb9-96b7-46bc-9f50-eb19227c7e51" + "3b074b73-514b-4584-b833-74728a764a6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -615,22 +1311,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "01f68fa2-5572-4a77-93fd-0d6335a49a18" + "4bc5a585-f7f0-49ec-ba2f-9b1397d0b61d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121540Z:01f68fa2-5572-4a77-93fd-0d6335a49a18" + "SOUTHEASTASIA:20210219T040322Z:4bc5a585-f7f0-49ec-ba2f-9b1397d0b61d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:40 GMT" + "Fri, 19 Feb 2021 04:03:22 GMT" ], "Content-Length": [ - "1346" + "1311" ], "Content-Type": [ "application/json" @@ -639,26 +1335,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "753d87d4-320e-4984-811e-1f70e71240b9" + "77c8e176-9798-49af-9967-8d9465c169be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -669,7 +1365,7 @@ "no-cache" ], "x-ms-request-id": [ - "522d67e0-1888-47a0-8e73-63c0923792b3" + "12cef701-bb52-44b4-93a4-a6df9effe646" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -678,22 +1374,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "0579a293-d965-46ad-89ee-3c201abe5e98" + "348ac2de-7488-4beb-ac62-d432d3eaa9fe" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121541Z:0579a293-d965-46ad-89ee-3c201abe5e98" + "SOUTHEASTASIA:20210219T040322Z:348ac2de-7488-4beb-ac62-d432d3eaa9fe" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:41 GMT" + "Fri, 19 Feb 2021 04:03:22 GMT" ], "Content-Length": [ - "1346" + "1311" ], "Content-Type": [ "application/json" @@ -702,26 +1398,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e6ef303-e6bb-44cd-9b63-805ded124444" + "2000ab02-04c6-487c-9365-46a7baf2f5a7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -732,7 +1428,7 @@ "no-cache" ], "x-ms-request-id": [ - "2cbfcd13-0d58-4ac1-a22c-4e96b70ebade" + "82723d25-16b9-4965-b80d-5511fdaf0a55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -741,22 +1437,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "cab0f8e3-1244-4e9b-aeee-30bf4ccd3a75" + "8e3e9cd0-e9f8-4f2c-ad2b-d984b45da815" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121543Z:cab0f8e3-1244-4e9b-aeee-30bf4ccd3a75" + "SOUTHEASTASIA:20210219T040323Z:8e3e9cd0-e9f8-4f2c-ad2b-d984b45da815" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:42 GMT" + "Fri, 19 Feb 2021 04:03:23 GMT" ], "Content-Length": [ - "1305" + "1311" ], "Content-Type": [ "application/json" @@ -765,26 +1461,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18fe2438-3c9c-492d-a6fb-f7017caf0d71" + "f491f01e-ac70-4352-b155-27b8325e25bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -795,7 +1491,7 @@ "no-cache" ], "x-ms-request-id": [ - "fe169081-8cfc-43c8-ad84-dfb771a9d900" + "748ff1cd-1e3c-48af-bd4e-8f0a63fde399" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -804,22 +1500,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "18b166cd-8263-4518-bff0-4f77e955313d" + "e9abba17-61ac-4aa1-b71b-0b4f12858046" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121544Z:18b166cd-8263-4518-bff0-4f77e955313d" + "SOUTHEASTASIA:20210219T040326Z:e9abba17-61ac-4aa1-b71b-0b4f12858046" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:43 GMT" + "Fri, 19 Feb 2021 04:03:25 GMT" ], "Content-Length": [ - "1305" + "1352" ], "Content-Type": [ "application/json" @@ -828,26 +1524,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3dc177ef-315c-4c72-be3d-cfee0b54e109" + "ce3fecd8-ce97-497d-9315-ebfb73613a13" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -858,7 +1554,7 @@ "no-cache" ], "x-ms-request-id": [ - "5d202d26-fe24-4299-84aa-19e5b1bd92c5" + "67e7fc86-4ea0-4495-bcc7-59a5ce352749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,22 +1563,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "1c97e102-369d-410c-9ece-34371c24ede5" + "ba043c01-45c3-49e3-926f-0d1093e3cab0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121544Z:1c97e102-369d-410c-9ece-34371c24ede5" + "SOUTHEASTASIA:20210219T040326Z:ba043c01-45c3-49e3-926f-0d1093e3cab0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:43 GMT" + "Fri, 19 Feb 2021 04:03:26 GMT" ], "Content-Length": [ - "1305" + "1352" ], "Content-Type": [ "application/json" @@ -891,26 +1587,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a46e520a-628a-4730-8c05-81a8d3bc57ff" + "34be22b0-da25-4cf2-87fd-2d7e54bef805" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -921,7 +1617,7 @@ "no-cache" ], "x-ms-request-id": [ - "22c675d4-9f1d-45e2-97b4-25cd34bd332c" + "f87bee4e-859a-488c-880a-e2d086dd1d74" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -930,22 +1626,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "c2fa5386-e081-4c45-a638-1053c713d98f" + "cbccb2b9-3d7f-49c4-af50-ac026d880eef" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121546Z:c2fa5386-e081-4c45-a638-1053c713d98f" + "SOUTHEASTASIA:20210219T040327Z:cbccb2b9-3d7f-49c4-af50-ac026d880eef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:45 GMT" + "Fri, 19 Feb 2021 04:03:26 GMT" ], "Content-Length": [ - "1246" + "1352" ], "Content-Type": [ "application/json" @@ -954,26 +1650,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b8ecfc2-4c32-40d8-ae49-c8ac984161da" + "37aa54cb-0d24-4ed1-aa2d-7cd99f62e53b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -984,7 +1680,7 @@ "no-cache" ], "x-ms-request-id": [ - "e47b3399-dafa-453c-8db8-0e2b5a4b20cb" + "8bac5696-bd81-42a9-ad58-409609715284" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,22 +1689,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "da773eec-8d1b-4892-b25d-d296a173a1f7" + "3fe82dd0-f09b-403d-b941-4fa675ef306c" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121547Z:da773eec-8d1b-4892-b25d-d296a173a1f7" + "SOUTHEASTASIA:20210219T040329Z:3fe82dd0-f09b-403d-b941-4fa675ef306c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:46 GMT" + "Fri, 19 Feb 2021 04:03:29 GMT" ], "Content-Length": [ - "1246" + "1555" ], "Content-Type": [ "application/json" @@ -1017,26 +1713,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "295cddd3-fc43-47e4-be53-0d728928cb53" + "94989e2b-d009-4519-93fd-2c6a427e9241" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1047,7 +1743,7 @@ "no-cache" ], "x-ms-request-id": [ - "1904d19a-2e15-4218-b5b6-7a9b9fb8bdba" + "5d5b4d1d-3b79-432d-9995-b4b4459ca648" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1056,22 +1752,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11995" ], "x-ms-correlation-request-id": [ - "034f7d21-e378-436a-b61f-d67e5bd5e3e9" + "9ff2fe50-1263-4247-bf55-c5c697b30596" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121547Z:034f7d21-e378-436a-b61f-d67e5bd5e3e9" + "SOUTHEASTASIA:20210219T040330Z:9ff2fe50-1263-4247-bf55-c5c697b30596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:47 GMT" + "Fri, 19 Feb 2021 04:03:29 GMT" ], "Content-Length": [ - "1246" + "1555" ], "Content-Type": [ "application/json" @@ -1080,26 +1776,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c7afe30b-552f-4e7b-9705-dd7efeea4e84" + "1e51a614-b86b-459c-8e0f-a0ab148273d5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1110,7 +1806,7 @@ "no-cache" ], "x-ms-request-id": [ - "dd41cb15-49ed-4012-b1c3-536bda90abfe" + "94151df7-2ece-4640-a1a4-8c85a985d856" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1119,22 +1815,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11994" ], "x-ms-correlation-request-id": [ - "e7a28b05-4e22-42d0-a19a-cb52d4a1e614" + "81c7bc3a-55ad-48cb-ba36-1ac95a56b6a2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121549Z:e7a28b05-4e22-42d0-a19a-cb52d4a1e614" + "SOUTHEASTASIA:20210219T040330Z:81c7bc3a-55ad-48cb-ba36-1ac95a56b6a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:49 GMT" + "Fri, 19 Feb 2021 04:03:30 GMT" ], "Content-Length": [ - "1286" + "1555" ], "Content-Type": [ "application/json" @@ -1143,26 +1839,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e121551c-cbc5-4ba0-a7ed-708875dea9b5" + "82eb4386-0b56-41e6-8015-54c16f479205" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1173,7 +1869,7 @@ "no-cache" ], "x-ms-request-id": [ - "a5791525-aeea-4f97-a1b5-37ce95b49838" + "4db96f77-98fd-416a-8e79-e7600da77616" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,22 +1878,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11993" ], "x-ms-correlation-request-id": [ - "75a5b862-24e7-44dd-839c-f16be2210574" + "2e443778-6362-49d3-8f21-48b3c513bb26" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121550Z:75a5b862-24e7-44dd-839c-f16be2210574" + "SOUTHEASTASIA:20210219T040333Z:2e443778-6362-49d3-8f21-48b3c513bb26" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:50 GMT" + "Fri, 19 Feb 2021 04:03:32 GMT" ], "Content-Length": [ - "1286" + "1759" ], "Content-Type": [ "application/json" @@ -1206,26 +1902,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f8fb2117-4c6c-42a9-af94-7b15eb105134" + "4c267396-43dc-4c8b-852a-10769bae7598" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1236,7 +1932,7 @@ "no-cache" ], "x-ms-request-id": [ - "508739b6-4161-4e1f-b895-87e881fe0638" + "eb43f5d5-c21f-4068-84c4-ed57e887a445" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,22 +1941,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "4a1193d9-78ed-4b56-809f-fc5bc528cc01" + "84cf196e-2619-4e73-989a-34da88670085" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121550Z:4a1193d9-78ed-4b56-809f-fc5bc528cc01" + "SOUTHEASTASIA:20210219T040333Z:84cf196e-2619-4e73-989a-34da88670085" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:49 GMT" + "Fri, 19 Feb 2021 04:03:33 GMT" ], "Content-Length": [ - "1286" + "1759" ], "Content-Type": [ "application/json" @@ -1269,26 +1965,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e4c38e6-09ce-4885-8e29-8e701b7de652" + "528672e8-4f3a-4ade-8cf8-d640bf22391e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1299,7 +1995,7 @@ "no-cache" ], "x-ms-request-id": [ - "47858624-7b20-4a79-acab-42e47f8ce5b3" + "04e98cb2-ecbd-4666-83f7-b89fe45383e0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,22 +2004,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-correlation-request-id": [ - "dd44e5f3-5b98-4a29-844c-1f267e2da242" + "a0bd8b47-6380-49a9-8a19-c76dd6c5fdfc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121552Z:dd44e5f3-5b98-4a29-844c-1f267e2da242" + "SOUTHEASTASIA:20210219T040342Z:a0bd8b47-6380-49a9-8a19-c76dd6c5fdfc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:51 GMT" + "Fri, 19 Feb 2021 04:03:41 GMT" ], "Content-Length": [ - "1327" + "1759" ], "Content-Type": [ "application/json" @@ -1332,26 +2028,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a471013f-a95e-4bf5-9c0a-f0d88ffc48da" + "4ef77386-1174-4e5f-aff5-80b724e7b588" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1362,7 +2058,7 @@ "no-cache" ], "x-ms-request-id": [ - "91104b1e-3e5b-43b9-9bf5-d23d3e06a577" + "0ccfda03-a9c8-43bb-9781-1f72e8a291bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,22 +2067,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11997" ], "x-ms-correlation-request-id": [ - "cefb4b24-6684-43af-830b-cc2b51548c56" + "49783894-0300-4297-89c0-61e331b8b34b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121553Z:cefb4b24-6684-43af-830b-cc2b51548c56" + "SOUTHEASTASIA:20210219T040344Z:49783894-0300-4297-89c0-61e331b8b34b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:52 GMT" + "Fri, 19 Feb 2021 04:03:44 GMT" ], "Content-Length": [ - "1327" + "1565" ], "Content-Type": [ "application/json" @@ -1395,26 +2091,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "246b20bc-7f5a-44d9-8409-4c1fb3538977" + "b0e62e06-56c0-4188-a77f-5771a3fb90e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1425,7 +2121,7 @@ "no-cache" ], "x-ms-request-id": [ - "c7cca2f6-bdda-40e9-8756-0a0c13af7d70" + "f90a40a3-1551-406d-b002-0277947803dc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1434,22 +2130,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-correlation-request-id": [ - "b5e55ee8-b579-4352-bd54-e24411186097" + "c98b28e1-6fe2-470c-a61c-4ca59336eeda" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121554Z:b5e55ee8-b579-4352-bd54-e24411186097" + "SOUTHEASTASIA:20210219T040345Z:c98b28e1-6fe2-470c-a61c-4ca59336eeda" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:53 GMT" + "Fri, 19 Feb 2021 04:03:45 GMT" ], "Content-Length": [ - "1327" + "1565" ], "Content-Type": [ "application/json" @@ -1458,26 +2154,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics,AzureServices\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "77d2a6f3-cc2e-4f82-93e7-33ce6bd18f46" + "e33cf3ff-fcaf-4025-bbb5-5357a23e33a9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "909" ] }, "ResponseHeaders": { @@ -1488,7 +2190,7 @@ "no-cache" ], "x-ms-request-id": [ - "afb66d22-a258-412d-8f2b-bcc1cf709cd5" + "8c4e2243-7318-4b27-a247-bfa3581ebfff" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1496,23 +2198,23 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "cd2ce5ef-1202-4a7c-a4d2-129a8c66aaec" + "29447ae8-0253-458d-a674-ca89dcc5869d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121555Z:cd2ce5ef-1202-4a7c-a4d2-129a8c66aaec" + "SOUTHEASTASIA:20210219T040307Z:29447ae8-0253-458d-a674-ca89dcc5869d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:55 GMT" + "Fri, 19 Feb 2021 04:03:06 GMT" ], "Content-Length": [ - "1337" + "1778" ], "Content-Type": [ "application/json" @@ -1521,26 +2223,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d66bf87e-5818-48d1-bf4b-71802fe4ac0e" + "25a13bf5-ab78-40b8-a941-df5e62815598" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "823" ] }, "ResponseHeaders": { @@ -1551,7 +2259,7 @@ "no-cache" ], "x-ms-request-id": [ - "04a6843f-6c95-456a-914f-29136b476946" + "40b68fc8-7882-4362-a147-c439068c44f7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1559,23 +2267,92 @@ "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "c5894fe6-73c7-49fa-ae4f-d0a68e0b4c67" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T040311Z:c5894fe6-73c7-49fa-ae4f-d0a68e0b4c67" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 04:03:10 GMT" + ], + "Content-Length": [ + "1737" + ], + "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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ac055ef7-ddd9-425c-8d2d-c254e8554da7" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "573" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "f03ce856-500e-4b72-96da-fce1830da06a" + ], + "Strict-Transport-Security": [ + "max-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" ], "x-ms-correlation-request-id": [ - "2b0967f1-dde7-4b35-985e-3f4baab05b9c" + "b5f60d04-24b5-4761-9ac9-c5f788552869" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121556Z:2b0967f1-dde7-4b35-985e-3f4baab05b9c" + "SOUTHEASTASIA:20210219T040314Z:b5f60d04-24b5-4761-9ac9-c5f788552869" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:56 GMT" + "Fri, 19 Feb 2021 04:03:14 GMT" ], "Content-Length": [ - "1337" + "1533" ], "Content-Type": [ "application/json" @@ -1584,32 +2361,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics,AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"resourceAccessRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c838707-9a43-4978-8fcd-ed9d7b97ed87" + "d492826b-1c87-4a71-a8ee-a671638e40d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "368" + "203" ] }, "ResponseHeaders": { @@ -1620,7 +2397,7 @@ "no-cache" ], "x-ms-request-id": [ - "d3d9a95a-60bf-4b82-9c92-8c154dae91ba" + "a0878638-86a3-419a-b164-00e539ae14b0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1632,19 +2409,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "d36a1c2d-041e-4fdc-aede-f19e4e2013e8" + "a683b51a-7721-45c0-97d4-c9e520c8d46a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121539Z:d36a1c2d-041e-4fdc-aede-f19e4e2013e8" + "SOUTHEASTASIA:20210219T040318Z:a683b51a-7721-45c0-97d4-c9e520c8d46a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:38 GMT" + "Fri, 19 Feb 2021 04:03:17 GMT" ], "Content-Length": [ - "1346" + "1271" ], "Content-Type": [ "application/json" @@ -1653,32 +2430,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"resourceAccessRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1b172dbb-ad0c-4ad6-ad08-379e80b90052" + "5157af9f-0e24-46cb-b386-cbee88deaa4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "282" + "297" ] }, "ResponseHeaders": { @@ -1689,7 +2466,7 @@ "no-cache" ], "x-ms-request-id": [ - "26167aea-4b67-48a4-ba62-9f8842587eda" + "6953b2e3-49a8-42ed-934e-0f11c96aebbd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1698,22 +2475,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4cfb5741-3e91-4f42-9ba4-844ae2849ad8" + "3044760e-cdd7-42ca-bd6f-e23105ed4b90" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121542Z:4cfb5741-3e91-4f42-9ba4-844ae2849ad8" + "SOUTHEASTASIA:20210219T040322Z:3044760e-cdd7-42ca-bd6f-e23105ed4b90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:42 GMT" + "Fri, 19 Feb 2021 04:03:22 GMT" ], "Content-Length": [ - "1305" + "1311" ], "Content-Type": [ "application/json" @@ -1722,32 +2499,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"Metrics, AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"resourceAccessRules\": [],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2e45cd4b-c6b8-4ef0-a33e-6d984412810e" + "a4834deb-f7a3-4f68-9270-c4b5dea7bf4f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "169" + "384" ] }, "ResponseHeaders": { @@ -1758,7 +2535,7 @@ "no-cache" ], "x-ms-request-id": [ - "7f19110a-b2f9-4b56-b062-b2f0dbb3c95a" + "e3acfa72-1c30-404f-946b-0939cd580b24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,22 +2544,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "4be45933-37b8-466c-98d0-fdc151fc4b87" + "674a4e36-ae4c-4311-9d69-348be83cca82" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121546Z:4be45933-37b8-466c-98d0-fdc151fc4b87" + "SOUTHEASTASIA:20210219T040325Z:674a4e36-ae4c-4311-9d69-348be83cca82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:45 GMT" + "Fri, 19 Feb 2021 04:03:25 GMT" ], "Content-Length": [ - "1246" + "1352" ], "Content-Type": [ "application/json" @@ -1791,32 +2568,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6b70a7e3-234d-4db1-bca1-2b3028a70400" + "b05c98fe-5dac-49e5-9ac4-67ae2d432620" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "263" + "641" ] }, "ResponseHeaders": { @@ -1827,7 +2604,7 @@ "no-cache" ], "x-ms-request-id": [ - "325c04a2-756e-461a-a8c3-9dfdf09d8481" + "0c3be52d-1323-401a-ab5b-724b4d87aef4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1836,22 +2613,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "38a442a4-aebc-4d0c-963e-31bfcf209018" + "4e934852-3fb3-4892-8c1a-8f8248978a75" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121549Z:38a442a4-aebc-4d0c-963e-31bfcf209018" + "SOUTHEASTASIA:20210219T040329Z:4e934852-3fb3-4892-8c1a-8f8248978a75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:48 GMT" + "Fri, 19 Feb 2021 04:03:28 GMT" ], "Content-Length": [ - "1286" + "1555" ], "Content-Type": [ "application/json" @@ -1860,32 +2637,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fba3fd79-11dd-416f-9faa-e1e907d421be" + "4a1acaa5-271d-4ce6-9523-05b567d4a163" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "350" + "891" ] }, "ResponseHeaders": { @@ -1896,7 +2673,7 @@ "no-cache" ], "x-ms-request-id": [ - "726ae4fd-4cc8-45b2-b04d-dee0514c1520" + "e5d582b7-5955-4169-99c4-aedb9a767a0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,19 +2685,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "6f326626-f072-45ab-acde-3d95c3b016ec" + "457bba71-ad57-4410-b34e-a3e9f6df1639" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121551Z:6f326626-f072-45ab-acde-3d95c3b016ec" + "SOUTHEASTASIA:20210219T040332Z:457bba71-ad57-4410-b34e-a3e9f6df1639" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:51 GMT" + "Fri, 19 Feb 2021 04:03:32 GMT" ], "Content-Length": [ - "1327" + "1759" ], "Content-Type": [ "application/json" @@ -1929,32 +2706,32 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName1\"\r\n },\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"None\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"11.1.1.0/24\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"28.0.2.0/19\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Deny\"\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66e3ce58-47b7-4a6a-b293-e910948c7eb4" + "9f4d0f1c-cc33-49f2-a848-eccc4abe9b9b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "326" + "617" ] }, "ResponseHeaders": { @@ -1965,7 +2742,7 @@ "no-cache" ], "x-ms-request-id": [ - "83df40bc-001f-4b45-8fba-53d1bd2a1dbd" + "eb42fc61-46d6-45e3-9459-f64da31bab2a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1974,22 +2751,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "5c4eb215-793b-429f-b018-c4a72b9220a0" + "a111bc02-a7e5-47dd-b08c-b02b7e2466d5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121555Z:5c4eb215-793b-429f-b018-c4a72b9220a0" + "SOUTHEASTASIA:20210219T040344Z:a111bc02-a7e5-47dd-b08c-b02b7e2466d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:15:55 GMT" + "Fri, 19 Feb 2021 04:03:44 GMT" ], "Content-Length": [ - "1337" + "1565" ], "Content-Type": [ "application/json" @@ -1998,26 +2775,26 @@ "-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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940\",\r\n \"name\": \"stopstestrg6940\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-04-20T12:15:17.1491277Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-04-20T12:15:17.0866151Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg6940.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg6940.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg6940.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg6940.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg6940.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg6940.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\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/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277\",\r\n \"name\": \"stopstestrg7277\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"networkAcls\": {\r\n \"resourceAccessRules\": [\r\n {\r\n \"tenantId\": \"57F86AF8-9BA8-41AA-B54F-9F73EF8A7C03\",\r\n \"resourceId\": \"/subscriptions/2720A159-AF04-4BED-B6FD-EC62CB5A1988/resourceGroups/resourceGroupName/providers/Microsoft.Compute/virtualMachines/VMName2\"\r\n }\r\n ],\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [\r\n {\r\n \"value\": \"20.11.0.0/16\",\r\n \"action\": \"Allow\"\r\n },\r\n {\r\n \"value\": \"10.0.0.0/7\",\r\n \"action\": \"Allow\"\r\n }\r\n ],\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-02-19T04:02:45.4443959Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T04:02:45.4443959Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T04:02:45.3662171Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7277.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7277.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7277.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7277.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7277.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7277.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/pstestrg6940/providers/Microsoft.Storage/storageAccounts/stopstestrg6940?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNjk0MC9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7277/providers/Microsoft.Storage/storageAccounts/stopstestrg7277?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzI3Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a9e291d-aae5-417b-a4da-f41b45bb73fe" + "73092030-7160-4cb3-b29a-76fd69743c30" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/14.5.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -2028,7 +2805,7 @@ "no-cache" ], "x-ms-request-id": [ - "606b0d91-e405-4249-8591-ca2bc41b471b" + "e078ca48-75df-4139-b25f-2469591b331f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2040,16 +2817,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "660b32f7-8634-4bf1-becb-81dcb9a4d244" + "c04e8810-3a28-4782-8497-106dcb93e9af" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121603Z:660b32f7-8634-4bf1-becb-81dcb9a4d244" + "SOUTHEASTASIA:20210219T040352Z:c04e8810-3a28-4782-8497-106dcb93e9af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:02 GMT" + "Fri, 19 Feb 2021 04:03:52 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -2065,22 +2842,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg6940?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNjk0MD9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7277?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzI3Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65081a37-6bc4-4525-aee5-d7901f6b7acf" + "ff6cfb3c-a628-42c9-92b3-b4acba7619fb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -2091,7 +2868,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" @@ -2100,13 +2877,13 @@ "14999" ], "x-ms-request-id": [ - "23c3cc93-7c8b-4f57-8516-c7ec7f504cc3" + "106209b0-42e4-4cf2-a46a-4c99b1a70628" ], "x-ms-correlation-request-id": [ - "23c3cc93-7c8b-4f57-8516-c7ec7f504cc3" + "106209b0-42e4-4cf2-a46a-4c99b1a70628" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121609Z:23c3cc93-7c8b-4f57-8516-c7ec7f504cc3" + "SOUTHEASTASIA:20210219T040356Z:106209b0-42e4-4cf2-a46a-4c99b1a70628" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2115,7 +2892,7 @@ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:09 GMT" + "Fri, 19 Feb 2021 04:03:55 GMT" ], "Expires": [ "-1" @@ -2128,16 +2905,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk1TkRBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -2148,22 +2925,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "4c9ab193-75a0-410b-9f05-20f0d2e1dfd1" + "04068014-ea27-4cbb-98c2-397cf7353460" ], "x-ms-correlation-request-id": [ - "4c9ab193-75a0-410b-9f05-20f0d2e1dfd1" + "04068014-ea27-4cbb-98c2-397cf7353460" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121625Z:4c9ab193-75a0-410b-9f05-20f0d2e1dfd1" + "SOUTHEASTASIA:20210219T040411Z:04068014-ea27-4cbb-98c2-397cf7353460" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2172,7 +2949,7 @@ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:25 GMT" + "Fri, 19 Feb 2021 04:04:10 GMT" ], "Expires": [ "-1" @@ -2185,16 +2962,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk1TkRBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -2205,22 +2982,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "ed1f6a56-0ca8-465e-b7d5-723d2f6e2f0b" + "0e08224f-e34c-4088-9dbc-7e19859e4f72" ], "x-ms-correlation-request-id": [ - "ed1f6a56-0ca8-465e-b7d5-723d2f6e2f0b" + "0e08224f-e34c-4088-9dbc-7e19859e4f72" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121640Z:ed1f6a56-0ca8-465e-b7d5-723d2f6e2f0b" + "SOUTHEASTASIA:20210219T040427Z:0e08224f-e34c-4088-9dbc-7e19859e4f72" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2229,7 +3006,7 @@ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:40 GMT" + "Fri, 19 Feb 2021 04:04:27 GMT" ], "Expires": [ "-1" @@ -2242,16 +3019,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk1TkRBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -2262,16 +3039,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "d473eabe-8ba6-4195-8a42-63bdc60ac7fb" + "0f1864ff-2a7f-40f2-9738-9e6d3eab84d4" ], "x-ms-correlation-request-id": [ - "d473eabe-8ba6-4195-8a42-63bdc60ac7fb" + "0f1864ff-2a7f-40f2-9738-9e6d3eab84d4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121656Z:d473eabe-8ba6-4195-8a42-63bdc60ac7fb" + "SOUTHEASTASIA:20210219T040442Z:0f1864ff-2a7f-40f2-9738-9e6d3eab84d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2280,7 +3057,7 @@ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:55 GMT" + "Fri, 19 Feb 2021 04:04:42 GMT" ], "Expires": [ "-1" @@ -2293,16 +3070,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzY5NDAtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSelk1TkRBdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzcyNzctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemN5TnpjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.27817.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.11" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -2313,16 +3090,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "a12fc495-e466-4a82-b866-17ffe64cd4e0" + "60c1120e-3980-4612-ba15-3841e897cd01" ], "x-ms-correlation-request-id": [ - "a12fc495-e466-4a82-b866-17ffe64cd4e0" + "60c1120e-3980-4612-ba15-3841e897cd01" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200420T121656Z:a12fc495-e466-4a82-b866-17ffe64cd4e0" + "SOUTHEASTASIA:20210219T040443Z:60c1120e-3980-4612-ba15-3841e897cd01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2331,7 +3108,7 @@ "nosniff" ], "Date": [ - "Mon, 20 Apr 2020 12:16:56 GMT" + "Fri, 19 Feb 2021 04:04:42 GMT" ], "Expires": [ "-1" @@ -2346,7 +3123,7 @@ ], "Names": { "Test-NetworkRule": [ - "pstestrg6940" + "pstestrg7277" ] }, "Variables": { diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 8801c2419534..3fb4ba679c54 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,10 @@ - Additional information about change #1 --> ## Upcoming Release +* Supported resource access rule in NetworkRuleSet + - `Update-AzStorageAccountNetworkRuleSet` + - `Add-AzStorageAccountNetworkRule` + - `Remove-AzStorageAccountNetworkRule` ## Version 3.3.0 * Supported RoutingPreference settings in create/update Storage account diff --git a/src/Storage/Storage.Management/Models/PSNetworkRule.cs b/src/Storage/Storage.Management/Models/PSNetworkRule.cs index d02d94bd4b1e..7bd7e96ef6ef 100644 --- a/src/Storage/Storage.Management/Models/PSNetworkRule.cs +++ b/src/Storage/Storage.Management/Models/PSNetworkRule.cs @@ -57,6 +57,12 @@ public struct PSVirtualNetworkRule public string State; } + public struct PSResourceAccessRule + { + public string TenantId; + public string ResourceId; + } + //Wrapper of NetworkRuleSet public class PSNetworkRuleSet { @@ -72,6 +78,8 @@ public class PSNetworkRuleSet [Ps1Xml(Label = "DefaultAction", Target = ViewControl.List, Position = 1)] public PSNetWorkRuleDefaultActionEnum DefaultAction { get; set; } + public PSResourceAccessRule[] ResourceAccessRules { get; set; } + //Parse NetworkRule property Action in SDK to wrapped property PSNetworkRuleActionEnum public static PSNetworkRuleActionEnum? ParsePSNetworkRuleAction(Microsoft.Azure.Management.Storage.Models.Action? action) @@ -206,6 +214,24 @@ public static IPRule ParseStorageNetworkRuleIPRule(PSIpRule ipRule) return returnRule; } + //Parse single NetworkRule PSResourceAccessRule in SDK to wrapped property PSPSResourceAccessRule + public static PSResourceAccessRule ParsePSResourceAccessRule(ResourceAccessRule rule) + { + PSResourceAccessRule returnRule = new PSResourceAccessRule(); + returnRule.TenantId = rule.TenantId; + returnRule.ResourceId = rule.ResourceId; + return returnRule; + } + + //Parse wrapped property PSPSResourceAccessRule to single NetworkRule PSResourceAccessRule in SDK + public static ResourceAccessRule ParseStorageResourceAccessRule(PSResourceAccessRule rule) + { + ResourceAccessRule returnRule = new ResourceAccessRule(); + returnRule.TenantId = rule.TenantId; + returnRule.ResourceId = rule.ResourceId; + return returnRule; + } + //Parse single NetworkRule VirtualNetworkRule in SDK to wrapped property PSVirtualNetworkRule public static PSVirtualNetworkRule ParsePSNetworkRuleVirtualNetworkRule(VirtualNetworkRule virtualNetworkRule) { @@ -258,6 +284,16 @@ public static PSNetworkRuleSet ParsePSNetworkRule(NetworkRuleSet rules) returnRules.VirtualNetworkRules = virtualNetworkList.ToArray(); } + List resourceAccessRuleList = new List(); + if (rules.ResourceAccessRules != null) + { + foreach (var rule in rules.ResourceAccessRules) + { + resourceAccessRuleList.Add(ParsePSResourceAccessRule(rule)); + } + returnRules.ResourceAccessRules = resourceAccessRuleList.ToArray(); + } + return returnRules; } @@ -292,6 +328,16 @@ public static NetworkRuleSet ParseStorageNetworkRule(PSNetworkRuleSet rules) returnRules.VirtualNetworkRules = virtualNetworkList.ToArray(); } + List resourceAccessRuleList = new List(); + if (rules.ResourceAccessRules != null) + { + foreach (var rule in rules.ResourceAccessRules) + { + resourceAccessRuleList.Add(ParseStorageResourceAccessRule(rule)); + } + returnRules.ResourceAccessRules = resourceAccessRuleList.ToArray(); + } + return returnRules; } } diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index bfeb42215c5f..1aac04d45346 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -122,6 +122,10 @@ if ($_.virtualNetworkRules[0] -ne $null) {"[" + $_.virtualNetworkRules[0].VirtualNetworkResourceId + ",...]"} else {$null} + + if ($_.ResourceAccessRules[0] -ne $null) {"[(" + $_.ResourceAccessRules[0].TenantId + "," + $_.ResourceAccessRules[0].ResourceId + "),...]"} else {$null} + + diff --git a/src/Storage/Storage.Management/StorageAccount/AddAzureStorageAccountNetworkRule.cs b/src/Storage/Storage.Management/StorageAccount/AddAzureStorageAccountNetworkRule.cs index 0cfbe9ccfc75..44712b031160 100644 --- a/src/Storage/Storage.Management/StorageAccount/AddAzureStorageAccountNetworkRule.cs +++ b/src/Storage/Storage.Management/StorageAccount/AddAzureStorageAccountNetworkRule.cs @@ -27,6 +27,7 @@ namespace Microsoft.Azure.Commands.Management.Storage [Cmdlet("Add", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageAccountNetworkRule", SupportsShouldProcess = true, DefaultParameterSetName = NetWorkRuleStringParameterSet)] [OutputType(typeof(PSVirtualNetworkRule), ParameterSetName = new string[] { NetWorkRuleStringParameterSet, NetworkRuleObjectParameterSet })] [OutputType(typeof(PSIpRule), ParameterSetName = new string[] { IpRuleStringParameterSet, IpRuleObjectParameterSet })] + [OutputType(typeof(PSResourceAccessRule), ParameterSetName = new string[] { ResourceAccessRuleStringParameterSet, ResourceAccessRuleObjectParameterSet })] public class AddAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmdlet { /// @@ -49,6 +50,16 @@ public class AddAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmdlet /// private const string IpRuleObjectParameterSet = "IpRuleObject"; + /// + /// ResourceAccess Objects pipeline parameter set + /// + private const string ResourceAccessRuleStringParameterSet = "ResourceAccessRuleString"; + + /// + /// ResourceAccess Objects pipeline parameter set + /// + private const string ResourceAccessRuleObjectParameterSet = "ResourceAccessRuleObject"; + [Parameter( Position = 0, Mandatory = true, @@ -79,6 +90,12 @@ public class AddAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmdlet ValueFromPipeline = true, ParameterSetName = NetworkRuleObjectParameterSet)] public PSVirtualNetworkRule[] VirtualNetworkRule { get; set; } + [Parameter( + Mandatory = true, + HelpMessage = "Storage Account NetworkRule ResourceAccessRules.", + ValueFromPipeline = true, ParameterSetName = ResourceAccessRuleObjectParameterSet)] + public PSResourceAccessRule[] ResourceAccessRule { get; set; } + [Parameter( Mandatory = true, HelpMessage = "Storage Account NetworkRule IPRules IPAddressOrRange in string.", @@ -92,6 +109,19 @@ public class AddAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmdlet [Alias("SubnetId", "VirtualNetworkId")] public string[] VirtualNetworkResourceId { get; set; } + [Parameter( + Mandatory = true, + HelpMessage = "Storage Account ResourceAccessRule TenantId in string.", + ParameterSetName = ResourceAccessRuleStringParameterSet)] + public string TenantId { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Storage Account ResourceAccessRule ResourceId in string.", + ParameterSetName = ResourceAccessRuleStringParameterSet)] + public string ResourceId { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } @@ -161,6 +191,29 @@ public override void ExecuteCmdlet() } } break; + case ResourceAccessRuleStringParameterSet: + if (storageACL.ResourceAccessRules == null) + { + storageACL.ResourceAccessRules = new List(); + } + bool ResourceAccessruleExist = false; + foreach (ResourceAccessRule originRule in storageACL.ResourceAccessRules) + { + if (originRule.TenantId.Equals(this.TenantId, System.StringComparison.InvariantCultureIgnoreCase) + && originRule.ResourceId.Equals(this.ResourceId, System.StringComparison.InvariantCultureIgnoreCase)) + { + ResourceAccessruleExist = true; + WriteDebug(string.Format("Skip add ResourceAccessRule as it already exist, TenantId: {0}, ResourceId: {1}", this.TenantId, this.ResourceId)); + break; + } + } + if (!ResourceAccessruleExist) + { + ResourceAccessRule rule = new ResourceAccessRule(this.TenantId, this.ResourceId); + storageACL.ResourceAccessRules.Add(rule); + ruleChanged = true; + } + break; case NetworkRuleObjectParameterSet: if (storageACL.VirtualNetworkRules == null) storageACL.VirtualNetworkRules = new List(); @@ -183,6 +236,32 @@ public override void ExecuteCmdlet() } } break; + case ResourceAccessRuleObjectParameterSet: + if (storageACL.ResourceAccessRules == null) + { + storageACL.ResourceAccessRules = new List(); + } + foreach (PSResourceAccessRule rule in ResourceAccessRule) + { + bool ruleExist = false; + foreach (ResourceAccessRule originRule in storageACL.ResourceAccessRules) + { + if (originRule.TenantId.Equals(rule.TenantId, System.StringComparison.InvariantCultureIgnoreCase) + && originRule.ResourceId.Equals(rule.ResourceId, System.StringComparison.InvariantCultureIgnoreCase)) + { + ruleExist = true; + WriteDebug(string.Format("Skip add ResourceAccessRule as it already exist, TenantId: {0}, ResourceId: {1}", rule.TenantId, rule.ResourceId)); + break; + } + } + if (!ruleExist) + { + + storageACL.ResourceAccessRules.Add(PSNetworkRuleSet.ParseStorageResourceAccessRule(rule)); + ruleChanged = true; + } + } + break; case IpRuleObjectParameterSet: if (storageACL.IpRules == null) storageACL.IpRules = new List(); @@ -231,6 +310,10 @@ public override void ExecuteCmdlet() case IpRuleObjectParameterSet: WriteObject(PSNetworkRuleSet.ParsePSNetworkRule(storageAccount.NetworkRuleSet).IpRules); break; + case ResourceAccessRuleStringParameterSet: + case ResourceAccessRuleObjectParameterSet: + WriteObject(PSNetworkRuleSet.ParsePSNetworkRule(storageAccount.NetworkRuleSet).ResourceAccessRules); + break; } } } diff --git a/src/Storage/Storage.Management/StorageAccount/RemoveAzureStorageAccountNetworkRule.cs b/src/Storage/Storage.Management/StorageAccount/RemoveAzureStorageAccountNetworkRule.cs index 9b46894b031a..ee4956c43ce3 100644 --- a/src/Storage/Storage.Management/StorageAccount/RemoveAzureStorageAccountNetworkRule.cs +++ b/src/Storage/Storage.Management/StorageAccount/RemoveAzureStorageAccountNetworkRule.cs @@ -28,6 +28,7 @@ namespace Microsoft.Azure.Commands.Management.Storage [Cmdlet("Remove", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "StorageAccountNetworkRule", SupportsShouldProcess = true, DefaultParameterSetName = NetWorkRuleStringParameterSet)] [OutputType(typeof(PSVirtualNetworkRule), ParameterSetName = new string[] { NetWorkRuleStringParameterSet, NetworkRuleObjectParameterSet })] [OutputType(typeof(PSIpRule), ParameterSetName = new string[] { IpRuleStringParameterSet, IpRuleObjectParameterSet })] + [OutputType(typeof(PSResourceAccessRule), ParameterSetName = new string[] { ResourceAccessRuleStringParameterSet, ResourceAccessRuleObjectParameterSet })] public class RemoveAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmdlet { /// @@ -50,6 +51,16 @@ public class RemoveAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmd /// private const string IpRuleObjectParameterSet = "IpRuleObject"; + /// + /// ResourceAccess Objects pipeline parameter set + /// + private const string ResourceAccessRuleStringParameterSet = "ResourceAccessRuleString"; + + /// + /// ResourceAccess Objects pipeline parameter set + /// + private const string ResourceAccessRuleObjectParameterSet = "ResourceAccessRuleObject"; + [Parameter( Position = 0, Mandatory = true, @@ -80,6 +91,12 @@ public class RemoveAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmd ValueFromPipeline = true, ParameterSetName = NetworkRuleObjectParameterSet)] public PSVirtualNetworkRule[] VirtualNetworkRule { get; set; } + [Parameter( + Mandatory = true, + HelpMessage = "Storage Account NetworkRule ResourceAccessRules.", + ValueFromPipeline = true, ParameterSetName = ResourceAccessRuleObjectParameterSet)] + public PSResourceAccessRule[] ResourceAccessRule { get; set; } + [Parameter( Mandatory = true, HelpMessage = "Storage Account NetworkRule IPRules IPAddressOrRange in string.", @@ -93,6 +110,19 @@ public class RemoveAzureStorageAccountNetworkRuleCommand : StorageAccountBaseCmd [Alias("SubnetId", "VirtualNetworkId")] public string[] VirtualNetworkResourceId { get; set; } + [Parameter( + Mandatory = true, + HelpMessage = "Storage Account ResourceAccessRule TenantId in string.", + ParameterSetName = ResourceAccessRuleStringParameterSet)] + public string TenantId { get; set; } + + [Parameter( + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Storage Account ResourceAccessRule ResourceId in string.", + ParameterSetName = ResourceAccessRuleStringParameterSet)] + public string ResourceId { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } @@ -133,6 +163,16 @@ public override void ExecuteCmdlet() if (!RemoveIpRule(storageACL.IpRules, rule)) throw new ArgumentOutOfRangeException("IPAddressOrRange", String.Format("Can't remove IpRule with specific IPAddressOrRange since not exist: {0}", rule.IPAddressOrRange)); } + break; + case ResourceAccessRuleStringParameterSet: + if (storageACL.ResourceAccessRules == null) + { + storageACL.ResourceAccessRules = new List(); + } + ResourceAccessRule resourceaccessrule = new ResourceAccessRule(this.TenantId, this.ResourceId); + if (!RemoveResourceAccessRule(storageACL.ResourceAccessRules, resourceaccessrule)) + throw new ArgumentOutOfRangeException("TenantId, ResourceId", String.Format("Can't remove ResourceAccessRule since not exist, TenantId: {0}, ResourceId : {1}", resourceaccessrule.TenantId, resourceaccessrule.ResourceId)); + break; case NetworkRuleObjectParameterSet: if (storageACL.VirtualNetworkRules == null) @@ -152,6 +192,17 @@ public override void ExecuteCmdlet() throw new ArgumentOutOfRangeException("IPRule", String.Format("Can't remove IpRule with specific IPAddressOrRange since not exist: {0}", rule.IPAddressOrRange)); } break; + case ResourceAccessRuleObjectParameterSet: + if (storageACL.ResourceAccessRules == null) + { + storageACL.ResourceAccessRules = new List(); + } + foreach (PSResourceAccessRule rule in this.ResourceAccessRule) + { + if (!RemoveResourceAccessRule(storageACL.ResourceAccessRules, PSNetworkRuleSet.ParseStorageResourceAccessRule(rule))) + throw new ArgumentOutOfRangeException("ResourceAccessRule", String.Format("Can't remove ResourceAccessRule since not exist, TenantId: {0}, ResourceId : {1}", rule.TenantId, rule.ResourceId)); + } + break; } StorageAccountUpdateParameters updateParameters = new StorageAccountUpdateParameters(); @@ -174,8 +225,12 @@ public override void ExecuteCmdlet() case IpRuleObjectParameterSet: WriteObject(PSNetworkRuleSet.ParsePSNetworkRule(storageAccount.NetworkRuleSet).IpRules); break; + case ResourceAccessRuleStringParameterSet: + case ResourceAccessRuleObjectParameterSet: + WriteObject(PSNetworkRuleSet.ParsePSNetworkRule(storageAccount.NetworkRuleSet).ResourceAccessRules); + break; } - } + } } /// @@ -197,6 +252,26 @@ public bool RemoveIpRule(IList ruleList, IPRule ruleToRemove) return false; } + /// + /// Remove one ResourceAccessRule from ResourceAccessRule List + /// + /// The ResourceAccessRule List + /// The ResourceAccessRule to remove + /// true if reove success + public bool RemoveResourceAccessRule(IList ruleList, ResourceAccessRule ruleToRemove) + { + foreach (ResourceAccessRule rule in ruleList) + { + if (rule.TenantId.Equals(ruleToRemove.TenantId, System.StringComparison.InvariantCultureIgnoreCase) + && rule.ResourceId.Equals(ruleToRemove.ResourceId, System.StringComparison.InvariantCultureIgnoreCase)) + { + ruleList.Remove(rule); + return true; + } + } + return false; + } + /// /// Remove one NetworkRule from NetworkRule List /// diff --git a/src/Storage/Storage.Management/StorageAccount/UpdateAzureStorageAccountNetworkRuleSet.cs b/src/Storage/Storage.Management/StorageAccount/UpdateAzureStorageAccountNetworkRuleSet.cs index 24c4801b06ea..e818602ecd87 100644 --- a/src/Storage/Storage.Management/StorageAccount/UpdateAzureStorageAccountNetworkRuleSet.cs +++ b/src/Storage/Storage.Management/StorageAccount/UpdateAzureStorageAccountNetworkRuleSet.cs @@ -112,12 +112,31 @@ public PSVirtualNetworkRule[] VirtualNetworkRule } } + [Parameter( + Mandatory = false, + ValueFromPipeline = true, + HelpMessage = "Storage Account NetworkRule ResourceAccessRules.")] + public PSResourceAccessRule[] ResourceAccessRule + { + get + { + return resourceAccessRule; + } + set + { + isResourceAccessRuleSet = true; + resourceAccessRule = value == null ? new List().ToArray() : value; + } + } + private PSNetWorkRuleBypassEnum? bypass = null; private PSNetWorkRuleDefaultActionEnum? defaultAction = null; private PSIpRule[] iPRules = null; private PSVirtualNetworkRule[] virtualNetworkRules = null; + private PSResourceAccessRule[] resourceAccessRule = null; private bool isIpRuleSet = false; private bool isNetworkRuleSet = false; + private bool isResourceAccessRuleSet = false; [Parameter(Mandatory = false, HelpMessage = "Run cmdlet in the background")] public SwitchParameter AsJob { get; set; } @@ -129,7 +148,7 @@ public override void ExecuteCmdlet() if (ShouldProcess(this.Name, "Update Storage Account NetworkRule")) { - if (IPRule == null && VirtualNetworkRule == null && bypass == null && defaultAction == null) + if (IPRule == null && VirtualNetworkRule == null && bypass == null && defaultAction == null && resourceAccessRule == null) { throw new System.ArgumentNullException("IPRules, VirtualNetworkRules, Bypass, DefaultAction", "Request must specify an account NetworkRule property to update."); } @@ -156,6 +175,11 @@ public override void ExecuteCmdlet() psNetworkRule.VirtualNetworkRules = VirtualNetworkRule; } + if (isResourceAccessRuleSet) + { + psNetworkRule.ResourceAccessRules = ResourceAccessRule; + } + if (bypass != null) { psNetworkRule.Bypass = bypass; diff --git a/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md b/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md index 5865d3f76164..8627aa6ee71a 100644 --- a/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md +++ b/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md @@ -32,12 +32,26 @@ Add-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] [-Confirm] [] ``` +### ResourceAccessRuleObject +``` +Add-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] + -ResourceAccessRule [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + ### IpRuleString ``` Add-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] -IPAddressOrRange [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### ResourceAccessRuleString +``` +Add-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] -TenantId + -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION The **Add-AzStorageAccountNetworkRule** cmdlet adds IpRules or VirtualNetworkRules to the NetworkRule property of a Storage account @@ -73,6 +87,21 @@ PS C:\>Add-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -Nam This command add several IpRule with IpRule objects, input with JSON. +### Example 5: Add a resource access rule +``` +PS C:\>Add-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -Name "mystorageaccount" -TenantId $tenantId -ResourceId $ResourceId +``` + +This command adds a resource access rule with TenantId and ResourceId. + + +### Example 6: Add all resource access rules of one storage account to another storage account +``` +PS C:\> (Get-AzStorageAccountNetworkRuleSet -ResourceGroupName "myResourceGroup" -Name "mystorageaccount1").ResourceAccessRules | Add-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -Name "mystorageaccount2" +``` + +This command gets all resource access rules from one storage account, and adds them to another storage account. + ## PARAMETERS ### -AsJob @@ -150,6 +179,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceAccessRule +Storage Account NetworkRule ResourceAccessRules. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[] +Parameter Sets: ResourceAccessRuleObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -ResourceGroupName Specifies the name of the resource group contains the Storage account. @@ -165,6 +209,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceId +Storage Account ResourceAccessRule ResourceId in string. + +```yaml +Type: System.String +Parameter Sets: ResourceAccessRuleString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TenantId +Storage Account ResourceAccessRule TenantId in string. + +```yaml +Type: System.String +Parameter Sets: ResourceAccessRuleString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VirtualNetworkResourceId The Array of VirtualNetworkResourceId, will add VirtualNetworkRule with input VirtualNetworkResourceId and default Action Allow to NetworkRule Property. diff --git a/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md b/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md index 2cfab438c085..230a5694ec6f 100644 --- a/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md +++ b/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md @@ -32,12 +32,26 @@ Remove-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] ] ``` +### ResourceAccessRuleObject +``` +Remove-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] + -ResourceAccessRule [-AsJob] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] +``` + ### IpRuleString ``` Remove-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] -IPAddressOrRange [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` +### ResourceAccessRuleString +``` +Remove-AzStorageAccountNetworkRule [-ResourceGroupName] [-Name] -TenantId + -ResourceId [-AsJob] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + ## DESCRIPTION The **Remove-AzStorageAccountNetworkRule** cmdlet removes IpRules or VirtualNetworkRules from the NetWorkRule property of a Storage account @@ -71,6 +85,21 @@ PS C:\>Remove-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" - This command remove several VirtualNetworkRules with VirtualNetworkResourceID. +### Example 5: Remove a resource access rule with TenantId and ResourceId. +``` +PS C:\>Remove-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -AccountName "mystorageaccount" -TenantId $tenantId -ResourceId $ResourceId +``` + +This command removes a resource access rule with TenantId and ResourceId. + +### Example 6: Remove the first 3 resource access rules from a storage account +``` +PS C:\> (Get-AzStorageAccountNetworkRuleSet -ResourceGroupName "myResourceGroup" -Name "mystorageaccount").ResourceAccessRules | Select-Object -First 3 | Remove-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -AccountName "mystorageaccount" +``` + +This command removes the first 3 resource access rules from a storage account. + + ## PARAMETERS ### -AsJob @@ -148,6 +177,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceAccessRule +Storage Account NetworkRule ResourceAccessRules. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[] +Parameter Sets: ResourceAccessRuleObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -ResourceGroupName Specifies the name of the resource group contains the Storage account. @@ -163,6 +207,36 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceId +Storage Account ResourceAccessRule ResourceId in string. + +```yaml +Type: System.String +Parameter Sets: ResourceAccessRuleString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TenantId +Storage Account ResourceAccessRule TenantId in string. + +```yaml +Type: System.String +Parameter Sets: ResourceAccessRuleString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -VirtualNetworkResourceId The Array of VirtualNetworkResourceId, will remove VirtualNetworkRule with same VirtualNetworkResourceId from the NetWorkRule Property. diff --git a/src/Storage/Storage.Management/help/Update-AzStorageAccountNetworkRuleSet.md b/src/Storage/Storage.Management/help/Update-AzStorageAccountNetworkRuleSet.md index 45f93cd85abe..dcef761c01f6 100644 --- a/src/Storage/Storage.Management/help/Update-AzStorageAccountNetworkRuleSet.md +++ b/src/Storage/Storage.Management/help/Update-AzStorageAccountNetworkRuleSet.md @@ -15,8 +15,8 @@ Update the NetworkRule property of a Storage account ``` Update-AzStorageAccountNetworkRuleSet [-ResourceGroupName] [-Name] [-Bypass ] [-DefaultAction ] [-IPRule ] - [-VirtualNetworkRule ] [-AsJob] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + [-VirtualNetworkRule ] [-ResourceAccessRule ] [-AsJob] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -28,7 +28,7 @@ The **Update-AzStorageAccountNetworkRuleSet** cmdlet updates the NetworkRule pro ``` PS C:\> Update-AzStorageAccountNetworkRuleSet -ResourceGroupName "myResourceGroup" -AccountName "mystorageaccount" -Bypass Logging,Metrics -DefaultAction Allow -IpRule (@{IPAddressOrRange="10.0.0.0/24";Action="allow"},@{IPAddressOrRange="28.2.0.0/16";Action="allow"}) -VirtualNetworkRule (@{VirtualNetworkResourceId="/subscriptions/s1/resourceGroups/g1/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/subnet1";Action="allow"},@{VirtualNetworkResourceId="/subscriptions/s1/resourceGroups/g1/providers/Microsoft.Network/virtualN - etworks/vnet2/subnets/subnet2";Action="allow"}) + etworks/vnet2/subnets/subnet2";Action="allow"}) -ResourceAccessRule (@{ResourceId=$ResourceId1;TenantId=$tenantId1},@{ResourceId=$ResourceId2;TenantId=$tenantId1}) ``` This command update all properties of NetworkRule, input Rules with JSON. @@ -42,7 +42,7 @@ This command update Bypass property of NetworkRule (other properties won't chang ### Example 3: Clean up rules of NetworkRule of a Storage account ``` -PS C:\> Update-AzStorageAccountNetworkRuleSet -ResourceGroupName "myResourceGroup" -AccountName "mystorageaccount" -IpRule @() -VirtualNetworkRule @() +PS C:\> Update-AzStorageAccountNetworkRuleSet -ResourceGroupName "myResourceGroup" -AccountName "mystorageaccount" -IpRule @() -VirtualNetworkRule @() -ResourceAccessRule @() ``` This command clean up rules of NetworkRule of a Storage account (other properties not change). @@ -148,6 +148,21 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -ResourceAccessRule +Storage Account NetworkRule ResourceAccessRules. + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSResourceAccessRule[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + ### -ResourceGroupName Specifies the name of the resource group contains the Storage account. diff --git a/src/Synapse/Synapse.Test/Synapse.Test.csproj b/src/Synapse/Synapse.Test/Synapse.Test.csproj index 238006a68b8b..55c89609a79f 100644 --- a/src/Synapse/Synapse.Test/Synapse.Test.csproj +++ b/src/Synapse/Synapse.Test/Synapse.Test.csproj @@ -13,7 +13,7 @@ - + \ No newline at end of file