diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/Common.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/Common.ps1 index edadd77af8a2..550d0bdf2a90 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/Common.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/Common.ps1 @@ -170,6 +170,15 @@ function Get-ProviderLocation_Canary($provider) "eastus2euap" } +<# +.SYNOPSIS +Gets the Canary location for a provider +#> +function Get-ProviderLocation_Canary2($provider) +{ + "centraluseuap" +} + <# .SYNOPSIS diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.cs index fc990eadd599..77fd83ff79ae 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.cs @@ -218,5 +218,12 @@ public void TestNewSetAStorageAccount_RoutingPreference() { TestRunner.RunTestScript("Test-NewSetAzStorageAccount_RoutingPreference"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestNewSetAzureStorageAccountAllowSharedKeyAccess() + { + TestRunner.RunTestScript("Test-NewSetAzureStorageAccountAllowSharedKeyAccess"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 index b5a0e1cf6567..ad747bd6c3fa 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageAccountTests.ps1 @@ -1058,12 +1058,22 @@ function Test-StorageAccountManagementPolicy # create Rule2 $action2 = Add-AzStorageAccountManagementPolicyAction -BaseBlobAction Delete -daysAfterModificationGreaterThan 100 - $filter2 = New-AzStorageAccountManagementPolicyFilter + $filter2 = New-AzStorageAccountManagementPolicyFilter -BlobType appendBlob,blockBlob $rule2 = New-AzStorageAccountManagementPolicyRule -Name Test2 -Action $action2 -Filter $filter2 -Disabled + + # create Rule3 + $action3 = Add-AzStorageAccountManagementPolicyAction -BlobVersionAction Delete -DaysAfterCreationGreaterThan 30 + $action3 = Add-AzStorageAccountManagementPolicyAction -InputObject $action3 -BlobVersionAction TierToCool -DaysAfterCreationGreaterThan 40 + $action3 = Add-AzStorageAccountManagementPolicyAction -InputObject $action3 -BlobVersionAction TierToArchive -DaysAfterCreationGreaterThan 50 + $action3 = Add-AzStorageAccountManagementPolicyAction -InputObject $action3 -SnapshotAction TierToCool -daysAfterCreationGreaterThan 60 + $action3 = Add-AzStorageAccountManagementPolicyAction -InputObject $action3 -SnapshotAction TierToArchive -daysAfterCreationGreaterThan 60 + $action3 = Add-AzStorageAccountManagementPolicyAction -InputObject $action3 -SnapshotAction Delete -daysAfterCreationGreaterThan 80 + $filter3 = New-AzStorageAccountManagementPolicyFilter + $rule3 = New-AzStorageAccountManagementPolicyRule -Name Test3 -Action $action3 -Filter $filter3 # Set policy - $policy = Set-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname -Rule $rule1, $rule2 - Assert-AreEqual 2 $policy.Rules.Count + $policy = Set-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname -Rule $rule1, $rule2,$rule3 + Assert-AreEqual 3 $policy.Rules.Count Assert-AreEqual $rule1.Enabled $policy.Rules[0].Enabled Assert-AreEqual $rule1.Name $policy.Rules[0].Name Assert-AreEqual $rule1.Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan $policy.Rules[0].Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan @@ -1081,10 +1091,22 @@ function Test-StorageAccountManagementPolicy Assert-AreEqual $rule2.Definition.Actions.BaseBlob.TierToCool $policy.Rules[1].Definition.Actions.BaseBlob.TierToCool Assert-AreEqual $rule2.Definition.Actions.Snapshot $policy.Rules[1].Definition.Actions.Snapshot Assert-AreEqual $rule2.Definition.Filters.BlobTypes[0] $policy.Rules[1].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule2.Definition.Filters.BlobTypes[1] $policy.Rules[1].Definition.Filters.BlobTypes[1] Assert-AreEqual $rule2.Definition.Filters.PrefixMatch $policy.Rules[1].Definition.Filters.PrefixMatch + Assert-AreEqual $rule3.Enabled $policy.Rules[2].Enabled + Assert-AreEqual $rule3.Name $policy.Rules[2].Name + Assert-AreEqual $rule3.Definition.Actions.BaseBlob $policy.Rules[2].Definition.Actions.BaseBlob + Assert-AreEqual $rule3.Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Filters.BlobTypes[0] $policy.Rules[2].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule3.Definition.Filters.PrefixMatch $policy.Rules[2].Definition.Filters.PrefixMatch $policy = Get-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname - Assert-AreEqual 2 $policy.Rules.Count + Assert-AreEqual 3 $policy.Rules.Count Assert-AreEqual $rule1.Enabled $policy.Rules[0].Enabled Assert-AreEqual $rule1.Name $policy.Rules[0].Name Assert-AreEqual $rule1.Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan $policy.Rules[0].Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan @@ -1102,14 +1124,26 @@ function Test-StorageAccountManagementPolicy Assert-AreEqual $rule2.Definition.Actions.BaseBlob.TierToCool $policy.Rules[1].Definition.Actions.BaseBlob.TierToCool Assert-AreEqual $rule2.Definition.Actions.Snapshot $policy.Rules[1].Definition.Actions.Snapshot Assert-AreEqual $rule2.Definition.Filters.BlobTypes[0] $policy.Rules[1].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule2.Definition.Filters.BlobTypes[1] $policy.Rules[1].Definition.Filters.BlobTypes[1] Assert-AreEqual $rule2.Definition.Filters.PrefixMatch $policy.Rules[1].Definition.Filters.PrefixMatch + Assert-AreEqual $rule3.Enabled $policy.Rules[2].Enabled + Assert-AreEqual $rule3.Name $policy.Rules[2].Name + Assert-AreEqual $rule3.Definition.Actions.BaseBlob $policy.Rules[2].Definition.Actions.BaseBlob + Assert-AreEqual $rule3.Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Filters.BlobTypes[0] $policy.Rules[2].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule3.Definition.Filters.PrefixMatch $policy.Rules[2].Definition.Filters.PrefixMatch Remove-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname $policy| Set-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname $policy = Get-AzStorageAccountManagementPolicy -ResourceGroupName $rgname -StorageAccountName $stoname - Assert-AreEqual 2 $policy.Rules.Count + Assert-AreEqual 3 $policy.Rules.Count Assert-AreEqual $rule1.Enabled $policy.Rules[0].Enabled Assert-AreEqual $rule1.Name $policy.Rules[0].Name Assert-AreEqual $rule1.Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan $policy.Rules[0].Definition.Actions.BaseBlob.Delete.DaysAfterModificationGreaterThan @@ -1127,7 +1161,19 @@ function Test-StorageAccountManagementPolicy Assert-AreEqual $rule2.Definition.Actions.BaseBlob.TierToCool $policy.Rules[1].Definition.Actions.BaseBlob.TierToCool Assert-AreEqual $rule2.Definition.Actions.Snapshot $policy.Rules[1].Definition.Actions.Snapshot Assert-AreEqual $rule2.Definition.Filters.BlobTypes[0] $policy.Rules[1].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule2.Definition.Filters.BlobTypes[1] $policy.Rules[1].Definition.Filters.BlobTypes[1] Assert-AreEqual $rule2.Definition.Filters.PrefixMatch $policy.Rules[1].Definition.Filters.PrefixMatch + Assert-AreEqual $rule3.Enabled $policy.Rules[2].Enabled + Assert-AreEqual $rule3.Name $policy.Rules[2].Name + Assert-AreEqual $rule3.Definition.Actions.BaseBlob $policy.Rules[2].Definition.Actions.BaseBlob + Assert-AreEqual $rule3.Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.Delete.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToCool.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan $policy.Rules[2].Definition.Actions.Snapshot.TierToArchive.DaysAfterCreationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.Delete.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToCool.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan $policy.Rules[2].Definition.Actions.Version.TierToArchive.DaysAfterModificationGreaterThan + Assert-AreEqual $rule3.Definition.Filters.BlobTypes[0] $policy.Rules[2].Definition.Filters.BlobTypes[0] + Assert-AreEqual $rule3.Definition.Filters.PrefixMatch $policy.Rules[2].Definition.Filters.PrefixMatch $policy| Remove-AzStorageAccountManagementPolicy @@ -1329,6 +1375,55 @@ function Test-NewSetAzureStorageAccount_RAGZRS } } + <# +.SYNOPSIS +Test Test-NewSetAzureStorageAccount_AllowSharedKeyAccess +.DESCRIPTION +SmokeTest +#> +function Test-NewSetAzureStorageAccountAllowSharedKeyAccess +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Standard_LRS'; + $loc = Get-ProviderLocation_Canary ResourceManagement; + $kind = 'StorageV2' + + New-AzResourceGroup -Name $rgname -Location $loc; + Write-Output ("Resource Group created") + + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -SkuName $stotype -AllowSharedKeyAccess $false ; + + Retry-IfException { $global: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; + #Assert-AreEqual $false $sto.AllowSharedKeyAccess + + Set-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -AllowSharedKeyAccess $true -EnableHttpsTrafficOnly $true + + Retry-IfException { $global: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; + #Assert-AreEqual $true $sto.AllowSharedKeyAccess + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} + <# diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 index 8f19b46cda03..2334eadd3fd7 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageBlobTests.ps1 @@ -173,13 +173,14 @@ function Test-StorageBlobContainerEncryptionScope $stos = Get-AzStorageAccount -ResourceGroupName $rgname; # create Scope - New-AzStorageEncryptionScope -ResourceGroupName $rgname -StorageAccountName $stoname -EncryptionScopeName $scopeName -StorageEncryption + New-AzStorageEncryptionScope -ResourceGroupName $rgname -StorageAccountName $stoname -EncryptionScopeName $scopeName -StorageEncryption -RequireInfrastructureEncryption $scope = Get-AzStorageEncryptionScope -ResourceGroupName $rgname -StorageAccountName $stoname -EncryptionScopeName $scopeName Assert-AreEqual $rgname $scope.ResourceGroupName Assert-AreEqual $stoname $scope.StorageAccountName Assert-AreEqual $scopeName $scope.Name Assert-AreEqual "Microsoft.Storage" $scope.Source Assert-AreEqual "Enabled" $scope.State + Assert-AreEqual $true $scope.RequireInfrastructureEncryption # update Scope $scope = Update-AzStorageEncryptionScope -ResourceGroupName $rgname -StorageAccountName $stoname -EncryptionScopeName $scopeName -State Disabled diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs index 366536e715c8..96cd7da85642 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs @@ -51,5 +51,12 @@ public void TestShareSoftDeletee() { TestController.NewInstance.RunPsTest(_logger, "Test-ShareSoftDelete"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestFileServiceProperties() + { + TestController.NewInstance.RunPsTest(_logger, "Test-FileServiceProperties"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 index fb639ee8c74f..050469882113 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 @@ -269,7 +269,7 @@ function Test-FileServiceProperties # Test $stoname = 'sto' + $rgname; $stotype = 'Premium_LRS'; - $loc = Get-ProviderLocation ResourceManagement; + $loc = Get-ProviderLocation_Canary2 ResourceManagement; $kind = 'FileStorage' Write-Verbose "RGName: $rgname | Loc: $loc" @@ -279,15 +279,43 @@ function Test-FileServiceProperties 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 + # Enable MC, and set smb setting + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableSmbMultichannel $true ` + -SMBProtocolVersion SMB2.1,SMB3.0,SMB3.1.1 ` + -SMBAuthenticationMethod Kerberos,NTLMv2 ` + -SMBKerberosTicketEncryption RC4-HMAC,AES-256 ` + -SMBChannelEncryption AES-128-CCM,AES-128-GCM,AES-256-GCM $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 + Assert-AreEqual 3 $servicePropertie.ProtocolSettings.Smb.Versions.Count + Assert-AreEqual 2 $servicePropertie.ProtocolSettings.Smb.AuthenticationMethods.Count + Assert-AreEqual 2 $servicePropertie.ProtocolSettings.Smb.KerberosTicketEncryption.Count + Assert-AreEqual 3 $servicePropertie.ProtocolSettings.Smb.ChannelEncryption.Count + + # Disable MC, update smb setting + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableSmbMultichannel $false ` + -SMBProtocolVersion SMB3.1.1 ` + -SMBAuthenticationMethod Kerberos ` + -SMBKerberosTicketEncryption AES-256 ` + -SMBChannelEncryption AES-128-CCM + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $false $servicePropertie.ProtocolSettings.Smb.Multichannel.Enabled + Assert-AreEqual "SMB3.1.1" $servicePropertie.ProtocolSettings.Smb.Versions[0] + Assert-AreEqual "Kerberos" $servicePropertie.ProtocolSettings.Smb.AuthenticationMethods[0] + Assert-AreEqual "AES-256" $servicePropertie.ProtocolSettings.Smb.KerberosTicketEncryption[0] + Assert-AreEqual "AES-128-CCM" $servicePropertie.ProtocolSettings.Smb.ChannelEncryption[0] + + # remove smb setting + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname ` + -SMBProtocolVersion @() ` + -SMBAuthenticationMethod @()` + -SMBKerberosTicketEncryption @() ` + -SMBChannelEncryption @() $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname Assert-AreEqual $false $servicePropertie.ProtocolSettings.Smb.Multichannel.Enabled + Assert-AreEqual $null $servicePropertie.ProtocolSettings.Smb.Versions + Assert-AreEqual $null $servicePropertie.ProtocolSettings.Smb.AuthenticationMethods + Assert-AreEqual $null $servicePropertie.ProtocolSettings.Smb.KerberosTicketEncryption + Assert-AreEqual $null $servicePropertie.ProtocolSettings.Smb.ChannelEncryption Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; } diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewSetAzureStorageAccountAllowSharedKeyAccess.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewSetAzureStorageAccountAllowSharedKeyAccess.json new file mode 100644 index 000000000000..7ad92279a573 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestNewSetAzureStorageAccountAllowSharedKeyAccess.json @@ -0,0 +1,945 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg8582?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"eastus2euap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c66c801-f340-4837-bd71-cb66339837d6" + ], + "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": [ + "33" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "dcb0c1eb-3ff8-4d77-b5a9-e9294a501e65" + ], + "x-ms-correlation-request-id": [ + "dcb0c1eb-3ff8-4d77-b5a9-e9294a501e65" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083147Z:dcb0c1eb-3ff8-4d77-b5a9-e9294a501e65" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:31:46 GMT" + ], + "Content-Length": [ + "182" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582\",\r\n \"name\": \"pstestrg8582\",\r\n \"location\": \"eastus2euap\",\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\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d0d489-285e-4d5a-8fff-fd3f05ca19e2" + ], + "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": [ + "c7cfa82d-e529-48f0-a06d-4f9a7f9b2129" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "8a8bdebf-4247-4799-b54e-18e47cb92605" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083148Z:8a8bdebf-4247-4799-b54e-18e47cb92605" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:31:48 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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2euap\",\r\n \"properties\": {\r\n \"allowSharedKeyAccess\": false\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d0d489-285e-4d5a-8fff-fd3f05ca19e2" + ], + "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": [ + "163" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2euap/asyncoperations/ee3b46e1-9139-45de-a92c-3c6c6fb06584?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "ee3b46e1-9139-45de-a92c-3c6c6fb06584" + ], + "Strict-Transport-Security": [ + "max-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": [ + "6d20b5c4-4fbd-449e-af0b-6c2c9b8fcf3c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083159Z:6d20b5c4-4fbd-449e-af0b-6c2c9b8fcf3c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:31:58 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/eastus2euap/asyncoperations/ee3b46e1-9139-45de-a92c-3c6c6fb06584?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMmV1YXAvYXN5bmNvcGVyYXRpb25zL2VlM2I0NmUxLTkxMzktNDVkZS1hOTJjLTNjNmM2ZmIwNjU4ND9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d0d489-285e-4d5a-8fff-fd3f05ca19e2" + ], + "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": [ + "ac82d118-c772-47d7-8949-9feb22acda58" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "070562c9-36f3-4eea-91f8-78c6ccc47b31" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083216Z:070562c9-36f3-4eea-91f8-78c6ccc47b31" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:16 GMT" + ], + "Content-Length": [ + "1294" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "58d0d489-285e-4d5a-8fff-fd3f05ca19e2" + ], + "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": [ + "94f53deb-dcea-472a-8dbe-1bfc82d3529c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "c2f1f66c-3e36-4401-81fa-860501e4813d" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083217Z:c2f1f66c-3e36-4401-81fa-860501e4813d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:16 GMT" + ], + "Content-Length": [ + "1294" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "286a23f3-4bd4-4bdb-ac7a-5b06d0b7f7ab" + ], + "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": [ + "7a9a7ae9-fd4e-48f4-a71f-c67dc675fdd5" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "04d0bb76-bd18-4404-b7c2-be25f5b00b88" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083218Z:04d0bb76-bd18-4404-b7c2-be25f5b00b88" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:17 GMT" + ], + "Content-Length": [ + "1294" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": false,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bd90145-340b-4fa4-b516-08577e0d2b84" + ], + "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": [ + "79e642be-d1d1-4a8d-bb2b-28d31c1b3a4c" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "bc94be52-af7b-4c26-bb87-98b54ea4c94c" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083222Z:bc94be52-af7b-4c26-bb87-98b54ea4c94c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:22 GMT" + ], + "Content-Length": [ + "1293" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f8cfdec4-e77c-438d-a060-fb5edf41e56b" + ], + "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": [ + "0fdb5622-82cd-4a24-a30f-96e1f53236c2" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "9f786df2-853c-484d-bc2a-ed09e2172599" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083224Z:9f786df2-853c-484d-bc2a-ed09e2172599" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:23 GMT" + ], + "Content-Length": [ + "1293" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PATCH", + "RequestBody": "{\r\n \"properties\": {\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"allowSharedKeyAccess\": true\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5bd90145-340b-4fa4-b516-08577e0d2b84" + ], + "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": [ + "101" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "9c71e8d3-141c-4caa-9d81-a73788cbc332" + ], + "Strict-Transport-Security": [ + "max-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": [ + "1eb40cf5-4112-4d37-b0f4-c2a71d8f954a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083222Z:1eb40cf5-4112-4d37-b0f4-c2a71d8f954a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:21 GMT" + ], + "Content-Length": [ + "1293" + ], + "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/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582\",\r\n \"name\": \"stopstestrg8582\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2euap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"allowSharedKeyAccess\": true,\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T08:31:58.2974842Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T08:31:58.2124602Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8582.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8582.z3.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8582.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8582.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8582.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8582.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2euap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8582/providers/Microsoft.Storage/storageAccounts/stopstestrg8582?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODU4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "aa16fb06-0223-4d1e-93d6-53210859b794" + ], + "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": [ + "277eb982-d4df-404e-9c7d-3911d0981c0b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "44b39617-0849-4bf4-9729-d8c018d818e3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083234Z:44b39617-0849-4bf4-9729-d8c018d818e3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:33 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg8582?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODU4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "71512e74-92ad-4ebd-9fe4-f02a8bdcfd08" + ], + "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" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], + "x-ms-request-id": [ + "d7f4c449-5059-410d-aa16-980688e00ca9" + ], + "x-ms-correlation-request-id": [ + "d7f4c449-5059-410d-aa16-980688e00ca9" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083240Z:d7f4c449-5059-410d-aa16-980688e00ca9" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:39 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemcxT0RJdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" + ], + "x-ms-request-id": [ + "52ec23e1-4167-4836-9fed-2530e9c40f84" + ], + "x-ms-correlation-request-id": [ + "52ec23e1-4167-4836-9fed-2530e9c40f84" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083256Z:52ec23e1-4167-4836-9fed-2530e9c40f84" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:32:55 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemcxT0RJdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-request-id": [ + "df0fbc79-41e8-4006-bc1f-bd4d29a0e1d1" + ], + "x-ms-correlation-request-id": [ + "df0fbc79-41e8-4006-bc1f-bd4d29a0e1d1" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083311Z:df0fbc79-41e8-4006-bc1f-bd4d29a0e1d1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:33:10 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemcxT0RJdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-request-id": [ + "dc411d1a-681d-4abf-b4c6-1c631b24742f" + ], + "x-ms-correlation-request-id": [ + "dc411d1a-681d-4abf-b4c6-1c631b24742f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083327Z:dc411d1a-681d-4abf-b4c6-1c631b24742f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:33:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg1ODItRUFTVFVTMkVVQVAiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czJldWFwIn0?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemcxT0RJdFJVRlRWRlZUTWtWVlFWQWlMQ0pxYjJKTWIyTmhkR2x2YmlJNkltVmhjM1IxY3pKbGRXRndJbjA/YXBpLXZlcnNpb249MjAxNi0wOS0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-request-id": [ + "2eb80df8-70c3-4ef3-9b52-6084e8bb7181" + ], + "x-ms-correlation-request-id": [ + "2eb80df8-70c3-4ef3-9b52-6084e8bb7181" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T083327Z:2eb80df8-70c3-4ef3-9b52-6084e8bb7181" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 08:33:27 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-NewSetAzureStorageAccountAllowSharedKeyAccess": [ + "pstestrg8582" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccountManagementPolicy.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccountManagementPolicy.json index 8624c0c5d000..f718301bd806 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccountManagementPolicy.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageAccountTests/TestStorageAccountManagementPolicy.json @@ -1,22 +1,22 @@ { "Entries": [ { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c7c0421-c93e-47a3-b8eb-c42d77c9e923" + "9deba6e1-0ed2-4d94-8472-055738d50b1b" ], "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -30,13 +30,13 @@ "11999" ], "x-ms-request-id": [ - "658fad20-45a5-4b65-a0fc-649e0c24b56b" + "fdba8b88-f321-4797-9bb9-1ca5159e65a9" ], "x-ms-correlation-request-id": [ - "658fad20-45a5-4b65-a0fc-649e0c24b56b" + "fdba8b88-f321-4797-9bb9-1ca5159e65a9" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070341Z:658fad20-45a5-4b65-a0fc-649e0c24b56b" + "SOUTHEASTASIA:20210219T092924Z:fdba8b88-f321-4797-9bb9-1ca5159e65a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:03:41 GMT" + "Fri, 19 Feb 2021 09:29:24 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "11808" + "15017" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/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 \"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 \"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 \"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 \"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\": \"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 \"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 ]\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 \"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 ]\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 \"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 ]\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 \"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 ]\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 \"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 ]\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 \"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 ]\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 \"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 ]\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 \"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-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 \"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 \"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-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 \"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 \"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 \"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/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/pstestrg2435?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3182?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9f1d5faf-dea5-49aa-b4c2-f22069ea6345" + "73801445-db41-4e36-bda9-5dc2e13db32d" ], "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "822ef677-2e5c-465a-b215-9fcfe33de511" + "540f5302-2e8d-45ee-82dc-48482d88974d" ], "x-ms-correlation-request-id": [ - "822ef677-2e5c-465a-b215-9fcfe33de511" + "540f5302-2e8d-45ee-82dc-48482d88974d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070344Z:822ef677-2e5c-465a-b215-9fcfe33de511" + "SOUTHEASTASIA:20210219T092927Z:540f5302-2e8d-45ee-82dc-48482d88974d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:03:44 GMT" + "Fri, 19 Feb 2021 09:29:27 GMT" ], "Content-Length": [ "177" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435\",\r\n \"name\": \"pstestrg2435\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182\",\r\n \"name\": \"pstestrg3182\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/checkNameAvailability?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "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\": \"stopstestrg2435\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"stopstestrg3182\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "501d897d-f144-421e-8b26-debb2020e83c" + "3d59a631-2f10-4506-8e34-2229e4b92621" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "d6148b68-fc64-4bfc-b654-3065c1e83241" + "caf0114e-8240-44f8-b1f3-ed79505933a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,19 +168,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11976" ], "x-ms-correlation-request-id": [ - "841c219d-4ab2-4e6e-b142-002a00579dfd" + "44c07b75-d8e9-4c40-ad4a-d709a94a14a8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070345Z:841c219d-4ab2-4e6e-b142-002a00579dfd" + "SOUTHEASTASIA:20210219T092928Z:44c07b75-d8e9-4c40-ad4a-d709a94a14a8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:03:44 GMT" + "Fri, 19 Feb 2021 09:29:28 GMT" ], "Content-Length": [ "22" @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ecae8b87-80f5-4eaf-9e61-37a8794491d9" + "3d59a631-2f10-4506-8e34-2229e4b92621" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westus/asyncoperations/0051b674-fdac-4a97-b08c-462d038f82af?monitor=true&api-version=2021-01-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/dbb9ba7b-6b4c-4094-85ed-2174cc71ed8e?monitor=true&api-version=2021-01-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "0051b674-fdac-4a97-b08c-462d038f82af" + "dbb9ba7b-6b4c-4094-85ed-2174cc71ed8e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,19 +243,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "e6ee6ad6-a450-451e-a04e-23943af2a7cf" + "655cdcd2-7926-419a-94a7-b285d7c6e608" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070349Z:e6ee6ad6-a450-451e-a04e-23943af2a7cf" + "SOUTHEASTASIA:20210219T092933Z:655cdcd2-7926-419a-94a7-b285d7c6e608" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:03:49 GMT" + "Fri, 19 Feb 2021 09:29:32 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -271,16 +271,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/providers/Microsoft.Storage/locations/westus/asyncoperations/0051b674-fdac-4a97-b08c-462d038f82af?monitor=true&api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy8wMDUxYjY3NC1mZGFjLTRhOTctYjA4Yy00NjJkMDM4ZjgyYWY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/dbb9ba7b-6b4c-4094-85ed-2174cc71ed8e?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy9kYmI5YmE3Yi02YjRjLTQwOTQtODVlZC0yMTc0Y2M3MWVkOGU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3d59a631-2f10-4506-8e34-2229e4b92621" + ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -291,7 +294,7 @@ "no-cache" ], "x-ms-request-id": [ - "8e591676-5b11-4da9-abcb-0e23ee1864b0" + "f1fd84e4-c14e-4c18-a972-6075c6b6082e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,22 +303,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11975" ], "x-ms-correlation-request-id": [ - "57f126e2-7adb-4104-a72e-8f9baf8e0220" + "5dc6a4f6-2d1c-428b-b936-51ea6aa97fea" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070407Z:57f126e2-7adb-4104-a72e-8f9baf8e0220" + "SOUTHEASTASIA:20210219T092950Z:5dc6a4f6-2d1c-428b-b936-51ea6aa97fea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:07 GMT" + "Fri, 19 Feb 2021 09:29:50 GMT" ], "Content-Length": [ - "1277" + "1317" ], "Content-Type": [ "application/json" @@ -324,26 +327,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435\",\r\n \"name\": \"stopstestrg2435\",\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 \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-26T07:03:49.3912578Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2435.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2435.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2435.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2435.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2435.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2435.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182\",\r\n \"name\": \"stopstestrg3182\",\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 \"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-19T09:29:32.6839485Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:29:32.6839485Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:29:32.5744613Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3182.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3182.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3182.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3182.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3182.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3182.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d4e1758-a382-4c18-a812-15a9481285bf" + "3d59a631-2f10-4506-8e34-2229e4b92621" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -354,7 +357,7 @@ "no-cache" ], "x-ms-request-id": [ - "fc0a70a1-34a5-430c-bf99-e7f46323c977" + "63a180a3-eb40-4dd4-bbae-f7e205579d14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,22 +366,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11974" ], "x-ms-correlation-request-id": [ - "9ab8f2b0-5c34-4414-8e1d-527b6fdccffc" + "391a598a-3dc5-4d55-81ed-261259f6ab93" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070407Z:9ab8f2b0-5c34-4414-8e1d-527b6fdccffc" + "SOUTHEASTASIA:20210219T092950Z:391a598a-3dc5-4d55-81ed-261259f6ab93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:07 GMT" + "Fri, 19 Feb 2021 09:29:50 GMT" ], "Content-Length": [ - "1277" + "1317" ], "Content-Type": [ "application/json" @@ -387,26 +390,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435\",\r\n \"name\": \"stopstestrg2435\",\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 \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-26T07:03:49.3912578Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2435.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2435.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2435.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2435.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2435.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2435.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182\",\r\n \"name\": \"stopstestrg3182\",\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 \"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-19T09:29:32.6839485Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:29:32.6839485Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:29:32.5744613Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3182.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3182.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3182.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3182.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3182.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3182.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2cbc1d7-932e-4a1d-b742-6e7892e8f9b4" + "1ae551b2-3f26-4a4b-93eb-27e1a350fb4e" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -417,7 +420,7 @@ "no-cache" ], "x-ms-request-id": [ - "1bde360f-521f-4828-8f80-cce5f7d4b447" + "f0ea9a40-b5d1-413b-8a93-f79c96954828" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,22 +429,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-correlation-request-id": [ - "fe9f6095-c9dc-44b2-9295-56f889605beb" + "7fb24564-07af-452d-9e22-436a2a3c7cc4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070408Z:fe9f6095-c9dc-44b2-9295-56f889605beb" + "SOUTHEASTASIA:20210219T092951Z:7fb24564-07af-452d-9e22-436a2a3c7cc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:08 GMT" + "Fri, 19 Feb 2021 09:29:51 GMT" ], "Content-Length": [ - "1277" + "1317" ], "Content-Type": [ "application/json" @@ -450,32 +453,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435\",\r\n \"name\": \"stopstestrg2435\",\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 \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n },\r\n \"blob\": {\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2019-11-26T07:03:49.4537979Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2019-11-26T07:03:49.3912578Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2435.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2435.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2435.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2435.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2435.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2435.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_GRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182\",\r\n \"name\": \"stopstestrg3182\",\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 \"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-19T09:29:32.6839485Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:29:32.6839485Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:29:32.5744613Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3182.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3182.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3182.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3182.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3182.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3182.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastus\",\r\n \"statusOfSecondary\": \"available\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ],\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ],\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n },\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "31f33369-f5aa-4ba6-8250-26e1c918c16b" + "d74cb8d4-c5ef-41ad-9b1b-768b6a871027" ], "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.1.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": [ - "1484" + "2567" ] }, "ResponseHeaders": { @@ -486,7 +489,7 @@ "no-cache" ], "x-ms-request-id": [ - "e89622d5-adf1-4eaa-84bc-987d99220439" + "cbaf90ad-5519-473a-ae5b-cb6660ffd8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,22 +498,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "34bc2982-3acf-4b21-93f1-21386607751b" + "f591402c-0c0e-4851-b447-3ec13bb56d78" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070409Z:34bc2982-3acf-4b21-93f1-21386607751b" + "SOUTHEASTASIA:20210219T092952Z:f591402c-0c0e-4851-b447-3ec13bb56d78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:08 GMT" + "Fri, 19 Feb 2021 09:29:52 GMT" ], "Content-Length": [ - "918" + "1376" ], "Content-Type": [ "application/json" @@ -519,32 +522,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2019-11-26T07:04:09.116292Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2021-02-19T09:29:52.4505656Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ],\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n }\r\n ]\r\n }\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ],\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n },\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n },\r\n \"type\": \"Lifecycle\"\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8df506e3-c058-44a0-9a12-f8b53b05ce42" + "ad08c990-241f-454a-97c5-9ca317376e4b" ], "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.1.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": [ - "1484" + "2567" ] }, "ResponseHeaders": { @@ -555,7 +558,7 @@ "no-cache" ], "x-ms-request-id": [ - "c74e4759-dca6-429f-8b1f-a8358cb7d4d5" + "e9b15c46-4c37-46b1-ab69-dc88b9f884f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,22 +567,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "e288ac0e-05d7-4dc0-9361-eb68e46f27f5" + "41d44243-49a9-4eb7-989b-6e2f70514ab2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070411Z:e288ac0e-05d7-4dc0-9361-eb68e46f27f5" + "SOUTHEASTASIA:20210219T092955Z:41d44243-49a9-4eb7-989b-6e2f70514ab2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:10 GMT" + "Fri, 19 Feb 2021 09:29:54 GMT" ], "Content-Length": [ - "918" + "1376" ], "Content-Type": [ "application/json" @@ -588,26 +591,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2019-11-26T07:04:11.1163314Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2021-02-19T09:29:54.9506967Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3975fbca-42fc-4555-9fb1-5e14c10e2d0c" + "9b84b491-a869-49a3-b167-9a422397c49e" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -618,7 +621,7 @@ "no-cache" ], "x-ms-request-id": [ - "5432d989-75ae-48a2-a6ae-c934ea163a22" + "84a8e979-1876-49ac-9fa1-d791452c20a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,22 +630,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "cd560ca5-5a3d-4352-bd62-e397cd3cae6f" + "e3572ad4-b2a7-424e-8b16-71269db14437" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070409Z:cd560ca5-5a3d-4352-bd62-e397cd3cae6f" + "SOUTHEASTASIA:20210219T092953Z:e3572ad4-b2a7-424e-8b16-71269db14437" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:08 GMT" + "Fri, 19 Feb 2021 09:29:52 GMT" ], "Content-Length": [ - "918" + "1376" ], "Content-Type": [ "application/json" @@ -651,26 +654,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2019-11-26T07:04:09.116292Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2021-02-19T09:29:52.4505656Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07e3aec1-39f0-4d95-9abe-3d24941b744d" + "3c707919-a093-4fde-a369-aa3756b1ba09" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -681,7 +684,7 @@ "no-cache" ], "x-ms-request-id": [ - "09e2f823-291a-4289-9e76-48107134f1e6" + "2482c377-dadf-4785-afa5-e425d54234bb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,22 +693,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11990" ], "x-ms-correlation-request-id": [ - "2e215195-9469-4b10-9f94-2cf6c9b1a073" + "c597a4ca-761c-4763-8f43-a9cb52e949c5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070412Z:2e215195-9469-4b10-9f94-2cf6c9b1a073" + "SOUTHEASTASIA:20210219T092955Z:c597a4ca-761c-4763-8f43-a9cb52e949c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:12 GMT" + "Fri, 19 Feb 2021 09:29:55 GMT" ], "Content-Length": [ - "918" + "1376" ], "Content-Type": [ "application/json" @@ -714,26 +717,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2019-11-26T07:04:11.1163314Z\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default\",\r\n \"name\": \"DefaultManagementPolicy\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/managementPolicies\",\r\n \"properties\": {\r\n \"policy\": {\r\n \"rules\": [\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"tierToCool\": {\r\n \"daysAfterModificationGreaterThan\": 30.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterModificationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ],\r\n \"prefixMatch\": [\r\n \"ab\",\r\n \"cd\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": false,\r\n \"name\": \"Test2\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"baseBlob\": {\r\n \"delete\": {\r\n \"daysAfterModificationGreaterThan\": 100.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"appendBlob\",\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"enabled\": true,\r\n \"name\": \"Test3\",\r\n \"type\": \"Lifecycle\",\r\n \"definition\": {\r\n \"actions\": {\r\n \"version\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 40.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 50.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 30.0\r\n }\r\n },\r\n \"snapshot\": {\r\n \"tierToCool\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"tierToArchive\": {\r\n \"daysAfterCreationGreaterThan\": 60.0\r\n },\r\n \"delete\": {\r\n \"daysAfterCreationGreaterThan\": 80.0\r\n }\r\n }\r\n },\r\n \"filters\": {\r\n \"blobTypes\": [\r\n \"blockBlob\"\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"lastModifiedTime\": \"2021-02-19T09:29:54.9506967Z\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40bd652c-1698-44f6-ac52-b3a921896190" + "8f8fd03d-f263-453d-8bde-aca055fdded7" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -744,7 +747,7 @@ "no-cache" ], "x-ms-request-id": [ - "18c9ceb0-0244-4044-8c59-cf46c4b68c56" + "3e675915-4394-4b90-b50d-d128f3a087e4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -753,19 +756,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "a2505c3e-0124-4f9e-9d92-4a721c186a76" + "d6bf9148-90d9-4f6a-a3f7-aaaf5e441cf8" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070410Z:a2505c3e-0124-4f9e-9d92-4a721c186a76" + "SOUTHEASTASIA:20210219T092954Z:d6bf9148-90d9-4f6a-a3f7-aaaf5e441cf8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:10 GMT" + "Fri, 19 Feb 2021 09:29:53 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -781,22 +784,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435/managementPolicies/default?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNS9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182/managementPolicies/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mi9tYW5hZ2VtZW50UG9saWNpZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f25b6ef3-8ece-4cf3-b693-c7486d2cf8c7" + "29ec21c2-cf20-474c-9d1a-5789cfe2d961" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -807,7 +810,7 @@ "no-cache" ], "x-ms-request-id": [ - "54bcc4e4-c9da-4a3e-b822-f3c9c12bf8ec" + "bc0c4e10-3663-460d-8c8d-78b08629dc16" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -819,16 +822,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "0a778d17-d555-45c1-9879-ed22b3203915" + "0d6a4195-761d-4ac0-a12f-641777af5bb3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070413Z:0a778d17-d555-45c1-9879-ed22b3203915" + "SOUTHEASTASIA:20210219T092957Z:0d6a4195-761d-4ac0-a12f-641777af5bb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:12 GMT" + "Fri, 19 Feb 2021 09:29:56 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -844,22 +847,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourceGroups/pstestrg2435/providers/Microsoft.Storage/storageAccounts/stopstestrg2435?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjQzNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3182/providers/Microsoft.Storage/storageAccounts/stopstestrg3182?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzE4Mi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a14d3097-226b-43e1-8707-5222e7c97064" + "473bf88e-f671-4096-bf0e-516a8f0a44bd" ], "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.1.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -870,28 +873,28 @@ "no-cache" ], "x-ms-request-id": [ - "f394399b-62d8-4366-bec1-e6f7f9373aea" + "6716c3f9-b944-4dca-91e6-489e480f4bbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" + ], "x-ms-correlation-request-id": [ - "5e945ccb-14e5-475b-a4d8-8677383e065e" + "bcfebe51-99f6-4495-9649-f45ab54a7aa4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070417Z:5e945ccb-14e5-475b-a4d8-8677383e065e" + "SOUTHEASTASIA:20210219T093003Z:bcfebe51-99f6-4495-9649-f45ab54a7aa4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:16 GMT" + "Fri, 19 Feb 2021 09:30:03 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -907,22 +910,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/resourcegroups/pstestrg2435?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjQzNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3182?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzE4Mj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27a9db46-75ff-4ca2-b42b-698f4c9dbc6c" + "d802edd0-35d8-4697-baac-b8e03d513faf" ], "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -933,79 +936,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "6a452606-2027-4f2d-9b7f-8e65168b4666" - ], - "x-ms-correlation-request-id": [ - "6a452606-2027-4f2d-9b7f-8e65168b4666" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070421Z:6a452606-2027-4f2d-9b7f-8e65168b4666" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Tue, 26 Nov 2019 07:04:21 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkwTXpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.27817.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.2" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "14996" ], "x-ms-request-id": [ - "c812f8dc-b34c-45b3-9976-6e5ef79215ba" + "2f0a808e-9e54-4d92-94d7-392f587994bf" ], "x-ms-correlation-request-id": [ - "c812f8dc-b34c-45b3-9976-6e5ef79215ba" + "2f0a808e-9e54-4d92-94d7-392f587994bf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070437Z:c812f8dc-b34c-45b3-9976-6e5ef79215ba" + "SOUTHEASTASIA:20210219T093007Z:2f0a808e-9e54-4d92-94d7-392f587994bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,7 +960,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:36 GMT" + "Fri, 19 Feb 2021 09:30:06 GMT" ], "Expires": [ "-1" @@ -1027,16 +973,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkwTXpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek14T0RJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1047,22 +993,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11989" ], "x-ms-request-id": [ - "05b24dd9-21de-4c61-ad84-988b5f5c469e" + "657611e8-fda1-4e4e-8245-12fc49b290c6" ], "x-ms-correlation-request-id": [ - "05b24dd9-21de-4c61-ad84-988b5f5c469e" + "657611e8-fda1-4e4e-8245-12fc49b290c6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070452Z:05b24dd9-21de-4c61-ad84-988b5f5c469e" + "SOUTHEASTASIA:20210219T093023Z:657611e8-fda1-4e4e-8245-12fc49b290c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1017,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:04:52 GMT" + "Fri, 19 Feb 2021 09:30:22 GMT" ], "Expires": [ "-1" @@ -1084,16 +1030,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkwTXpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek14T0RJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1104,22 +1050,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11988" ], "x-ms-request-id": [ - "07569d06-846a-4c98-b20d-5154c2cfd718" + "df631eb4-d3de-4da3-adfc-375ad4029447" ], "x-ms-correlation-request-id": [ - "07569d06-846a-4c98-b20d-5154c2cfd718" + "df631eb4-d3de-4da3-adfc-375ad4029447" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070508Z:07569d06-846a-4c98-b20d-5154c2cfd718" + "SOUTHEASTASIA:20210219T093038Z:df631eb4-d3de-4da3-adfc-375ad4029447" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,7 +1074,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:05:07 GMT" + "Fri, 19 Feb 2021 09:30:37 GMT" ], "Expires": [ "-1" @@ -1141,16 +1087,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkwTXpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek14T0RJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1161,16 +1107,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11987" ], "x-ms-request-id": [ - "e1b18d39-06f5-4f8b-91a7-2465ce60a808" + "36becdc1-90e0-4e6f-90c4-ab8849f705cb" ], "x-ms-correlation-request-id": [ - "e1b18d39-06f5-4f8b-91a7-2465ce60a808" + "36becdc1-90e0-4e6f-90c4-ab8849f705cb" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070523Z:e1b18d39-06f5-4f8b-91a7-2465ce60a808" + "SOUTHEASTASIA:20210219T093053Z:36becdc1-90e0-4e6f-90c4-ab8849f705cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1179,7 +1125,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:05:22 GMT" + "Fri, 19 Feb 2021 09:30:52 GMT" ], "Expires": [ "-1" @@ -1192,16 +1138,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/ce4a7590-4722-4bcf-a2c6-e473e9f11778/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI0MzUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvY2U0YTc1OTAtNDcyMi00YmNmLWEyYzYtZTQ3M2U5ZjExNzc4L29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkwTXpVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzMxODItV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek14T0RJdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "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.2" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1212,16 +1158,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11986" ], "x-ms-request-id": [ - "f6a775cd-ee14-4fca-b9b8-58884c9dc54e" + "122ea43c-ea66-41f5-87f0-1741cc5bc1be" ], "x-ms-correlation-request-id": [ - "f6a775cd-ee14-4fca-b9b8-58884c9dc54e" + "122ea43c-ea66-41f5-87f0-1741cc5bc1be" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20191126T070523Z:f6a775cd-ee14-4fca-b9b8-58884c9dc54e" + "SOUTHEASTASIA:20210219T093054Z:122ea43c-ea66-41f5-87f0-1741cc5bc1be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1230,7 +1176,7 @@ "nosniff" ], "Date": [ - "Tue, 26 Nov 2019 07:05:23 GMT" + "Fri, 19 Feb 2021 09:30:53 GMT" ], "Expires": [ "-1" @@ -1245,10 +1191,10 @@ ], "Names": { "Test-StorageAccountManagementPolicy": [ - "pstestrg2435" + "pstestrg3182" ] }, "Variables": { - "SubscriptionId": "ce4a7590-4722-4bcf-a2c6-e473e9f11778" + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" } } \ No newline at end of file diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobContainerEncryptionScope.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobContainerEncryptionScope.json index b5e0d0b47fb9..8f8d991e87c5 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobContainerEncryptionScope.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageBlobTests/TestStorageBlobContainerEncryptionScope.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "feb92d6a-78db-40f5-bb9c-362de055ae90" + "69062fd0-f643-404e-9f55-d192bdb605c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11998" ], "x-ms-request-id": [ - "ded78290-8267-4314-bbd9-a2b357757e56" + "b6075cd9-92bf-4007-9319-1b38358a55a0" ], "x-ms-correlation-request-id": [ - "ded78290-8267-4314-bbd9-a2b357757e56" + "b6075cd9-92bf-4007-9319-1b38358a55a0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132023Z:ded78290-8267-4314-bbd9-a2b357757e56" + "SOUTHEASTASIA:20210219T090958Z:b6075cd9-92bf-4007-9319-1b38358a55a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:23 GMT" + "Fri, 19 Feb 2021 09:09:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -54,29 +54,29 @@ "-1" ], "Content-Length": [ - "12336" + "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\": \"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 \"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/pstestrg8811?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg2605?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "fa98f001-f0c4-4dc0-8a2c-fa4c11ccc1b5" + "fefc67ab-e4e7-433a-9099-012996edcbcf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-request-id": [ - "0a073523-5f57-4868-8848-902c137fa46b" + "4e851b30-9b69-4840-aa49-f1ccf0b200e7" ], "x-ms-correlation-request-id": [ - "0a073523-5f57-4868-8848-902c137fa46b" + "4e851b30-9b69-4840-aa49-f1ccf0b200e7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132026Z:0a073523-5f57-4868-8848-902c137fa46b" + "SOUTHEASTASIA:20210219T091001Z:4e851b30-9b69-4840-aa49-f1ccf0b200e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:26 GMT" + "Fri, 19 Feb 2021 09:10:00 GMT" ], "Content-Length": [ "177" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811\",\r\n \"name\": \"pstestrg8811\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605\",\r\n \"name\": \"pstestrg2605\",\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\": \"stopstestrg8811\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"stopstestrg2605\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "849f8786-5805-4eb6-a646-2231ee0ebfc5" + "d1a07d44-75fa-44e5-9f50-e2093d73f600" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "d8eabfd7-8b0c-4920-9697-5c25a9c39adf" + "eb6fa6f3-0265-4e89-853b-e8d5e22fb515" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -168,19 +168,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "d8ca3603-64dd-4a94-889c-5f75513e3d54" + "9d5bc28a-c2fe-41dd-ab2c-4f9cae7f6154" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132027Z:d8ca3603-64dd-4a94-889c-5f75513e3d54" + "SOUTHEASTASIA:20210219T091002Z:9d5bc28a-c2fe-41dd-ab2c-4f9cae7f6154" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:27 GMT" + "Fri, 19 Feb 2021 09:10:01 GMT" ], "Content-Length": [ "22" @@ -196,22 +196,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c294b941-4051-4d54-84c5-800eaa07ad6d" + "d1a07d44-75fa-44e5-9f50-e2093d73f600" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/4386c103-820d-4bdf-990a-6a52ca8350d5?monitor=true&api-version=2021-01-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/8ad8bac2-095c-4562-aec1-b1a925f398cd?monitor=true&api-version=2021-01-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "4386c103-820d-4bdf-990a-6a52ca8350d5" + "8ad8bac2-095c-4562-aec1-b1a925f398cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -243,19 +243,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1191" ], "x-ms-correlation-request-id": [ - "a26cf890-6c3b-4812-a7d0-f9c0fe6bde3e" + "c57ce424-13e3-474e-b9d0-3eb963440817" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132033Z:a26cf890-6c3b-4812-a7d0-f9c0fe6bde3e" + "SOUTHEASTASIA:20210219T091007Z:c57ce424-13e3-474e-b9d0-3eb963440817" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:33 GMT" + "Fri, 19 Feb 2021 09:10:07 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -271,16 +271,19 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/4386c103-820d-4bdf-990a-6a52ca8350d5?monitor=true&api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy80Mzg2YzEwMy04MjBkLTRiZGYtOTkwYS02YTUyY2E4MzUwZDU/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/8ad8bac2-095c-4562-aec1-b1a925f398cd?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy84YWQ4YmFjMi0wOTVjLTQ1NjItYWVjMS1iMWE5MjVmMzk4Y2Q/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d1a07d44-75fa-44e5-9f50-e2093d73f600" + ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -291,28 +294,28 @@ "no-cache" ], "x-ms-request-id": [ - "1b5c772d-099c-4a08-86c8-0e437910c844" + "ba88bfad-5dd3-4ec6-863d-0392ec77c3a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], "Server": [ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], "x-ms-correlation-request-id": [ - "8bc743bb-2443-4545-a595-5e8e62eff8b6" + "4db6b4de-98f3-41ad-9047-4302d23c8ef7" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132051Z:8bc743bb-2443-4545-a595-5e8e62eff8b6" + "SOUTHEASTASIA:20210219T091025Z:4db6b4de-98f3-41ad-9047-4302d23c8ef7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:51 GMT" + "Fri, 19 Feb 2021 09:10:24 GMT" ], "Content-Length": [ "1256" @@ -324,26 +327,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/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811\",\r\n \"name\": \"stopstestrg8811\",\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 \"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-03-30T13:20:33.1312089Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-03-30T13:20:33.1312089Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-03-30T13:20:33.0374783Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8811.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8811.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8811.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8811.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8811.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8811.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/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605\",\r\n \"name\": \"stopstestrg2605\",\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 \"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-19T09:10:07.1942333Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:10:07.1942333Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:10:07.1005124Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2605.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2605.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2605.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2605.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2605.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2605.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/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bdf10905-da0d-41ca-9813-ec59493993ce" + "d1a07d44-75fa-44e5-9f50-e2093d73f600" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -354,7 +357,7 @@ "no-cache" ], "x-ms-request-id": [ - "8af8d87b-a8df-4cd8-a04e-d3039b8eb713" + "646b2480-e1a8-4e96-960e-3fd4849452da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,19 +366,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-correlation-request-id": [ - "a9c51f99-2726-471a-b675-fbc548fe0ff2" + "9e5925d4-eebf-41e4-8e4b-949ab3a35e68" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132052Z:a9c51f99-2726-471a-b675-fbc548fe0ff2" + "SOUTHEASTASIA:20210219T091025Z:9e5925d4-eebf-41e4-8e4b-949ab3a35e68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:52 GMT" + "Fri, 19 Feb 2021 09:10:25 GMT" ], "Content-Length": [ "1256" @@ -387,26 +390,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/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811\",\r\n \"name\": \"stopstestrg8811\",\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 \"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-03-30T13:20:33.1312089Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-03-30T13:20:33.1312089Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-03-30T13:20:33.0374783Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8811.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8811.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8811.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8811.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8811.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8811.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/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605\",\r\n \"name\": \"stopstestrg2605\",\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 \"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-19T09:10:07.1942333Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:10:07.1942333Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:10:07.1005124Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2605.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2605.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2605.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2605.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2605.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2605.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/pstestrg8811/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "605c0fa6-2d90-414e-b5ab-5e37fa7be42b" + "6522f4cc-3718-47ae-a4c2-eed98b9aba10" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -417,7 +420,7 @@ "no-cache" ], "x-ms-request-id": [ - "52a754c3-2c65-40cc-b69e-570a44788e90" + "16fe7775-7a38-425e-a61b-a12c06758572" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,19 +429,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-correlation-request-id": [ - "24caee6d-81e1-4dfe-bc0a-0d26d7605c88" + "b1ec5284-8cd5-4c56-950e-f40080c2bf38" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132052Z:24caee6d-81e1-4dfe-bc0a-0d26d7605c88" + "SOUTHEASTASIA:20210219T091025Z:b1ec5284-8cd5-4c56-950e-f40080c2bf38" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:52 GMT" + "Fri, 19 Feb 2021 09:10:25 GMT" ], "Content-Length": [ "1268" @@ -450,32 +453,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\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/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811\",\r\n \"name\": \"stopstestrg8811\",\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 \"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-03-30T13:20:33.1312089Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-03-30T13:20:33.1312089Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-03-30T13:20:33.0374783Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg8811.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg8811.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg8811.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg8811.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg8811.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg8811.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\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/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605\",\r\n \"name\": \"stopstestrg2605\",\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 \"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-19T09:10:07.1942333Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:10:07.1942333Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:10:07.1005124Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg2605.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg2605.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg2605.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg2605.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg2605.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg2605.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"westus\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "44b24706-13ac-4ba3-bb6e-303adf1f7f35" + "ae1d003a-d62c-42e3-a780-c72430ec9d9c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.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": [ - "63" + "109" ] }, "ResponseHeaders": { @@ -486,7 +489,7 @@ "no-cache" ], "x-ms-request-id": [ - "4a4bddb8-7c2e-4fbc-bb33-2d2c9b6894e0" + "0de27000-61cf-46d7-865f-439ac66b439f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,22 +498,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "f1255436-0730-4630-94a3-d03539f8ef1f" + "afcb00b1-21fe-4fc5-85ba-efd9dad5b5bf" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132053Z:f1255436-0730-4630-94a3-d03539f8ef1f" + "SOUTHEASTASIA:20210219T091026Z:afcb00b1-21fe-4fc5-85ba-efd9dad5b5bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:52 GMT" + "Fri, 19 Feb 2021 09:10:25 GMT" ], "Content-Length": [ - "386" + "475" ], "Content-Type": [ "application/json" @@ -519,26 +522,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:52.8192778Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"state\": \"Enabled\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab048c77-3c6f-44cd-9354-37c7e06bf8ec" + "21b6d73f-0c7c-4aff-90b0-4573f052f2d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -549,7 +552,7 @@ "no-cache" ], "x-ms-request-id": [ - "298b9014-08cc-4263-bad4-2ec8bcbf85a3" + "25bf1b68-3928-4d96-a202-53229e70c2c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -558,22 +561,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11983" ], "x-ms-correlation-request-id": [ - "21a4b727-eed5-45d4-937f-83e8a0d49da1" + "3fccb3f3-e05b-4c43-b0fc-23b9a366d14e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132053Z:21a4b727-eed5-45d4-937f-83e8a0d49da1" + "SOUTHEASTASIA:20210219T091026Z:3fccb3f3-e05b-4c43-b0fc-23b9a366d14e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:53 GMT" + "Fri, 19 Feb 2021 09:10:26 GMT" ], "Content-Length": [ - "386" + "451" ], "Content-Type": [ "application/json" @@ -582,26 +585,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:52.8192778Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"creationTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"state\": \"Enabled\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Disabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2f4b82cf-e00a-4ecc-b993-e518aea413d1" + "f6420e0a-1fa4-4a3c-a09e-80482924fe19" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -618,7 +621,7 @@ "no-cache" ], "x-ms-request-id": [ - "1749f631-44c0-4122-8e82-d13157f8b481" + "0ff88d31-f92a-488a-ab5b-d68c7506cc77" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,22 +630,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1189" ], "x-ms-correlation-request-id": [ - "a781a0e2-15dd-48ae-a179-c2b36b125944" + "7f05c6e8-a209-4dd9-a487-e888d3acaf23" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132053Z:a781a0e2-15dd-48ae-a179-c2b36b125944" + "SOUTHEASTASIA:20210219T091027Z:7f05c6e8-a209-4dd9-a487-e888d3acaf23" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:53 GMT" + "Fri, 19 Feb 2021 09:10:26 GMT" ], "Content-Length": [ - "387" + "452" ], "Content-Type": [ "application/json" @@ -651,26 +654,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:52.8192778Z\",\r\n \"state\": \"Disabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"creationTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:27.1746506Z\",\r\n \"state\": \"Disabled\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"state\": \"Enabled\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "445f5a88-71ed-4120-9067-2c18603a132a" + "a1c46fe3-8f3f-45c5-8538-4e0d76f03f68" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,7 +690,7 @@ "no-cache" ], "x-ms-request-id": [ - "bb0f2a7c-9cc0-4ffe-8a1c-4e3f36610128" + "f037e482-58dc-450b-9d95-4a20c2114658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -696,22 +699,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1188" ], "x-ms-correlation-request-id": [ - "d9f37deb-aad1-49c3-af36-dabbdb36c823" + "2cf3f5b1-68dd-4eea-81db-c05e800b7dd4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132054Z:d9f37deb-aad1-49c3-af36-dabbdb36c823" + "SOUTHEASTASIA:20210219T091027Z:2cf3f5b1-68dd-4eea-81db-c05e800b7dd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:54 GMT" + "Fri, 19 Feb 2021 09:10:27 GMT" ], "Content-Length": [ - "386" + "451" ], "Content-Type": [ "application/json" @@ -720,26 +723,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:52.8192778Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"creationTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:27.7210212Z\",\r\n \"state\": \"Enabled\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope2?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope2?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzL3Rlc3RzY29wZTI/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3f7047fe-0b8a-4c86-9528-804d9c5470d5" + "657af6bd-3414-47e8-8625-a78de992ff91" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,7 +759,7 @@ "no-cache" ], "x-ms-request-id": [ - "24d5cb7f-1b32-4f5a-97aa-49b41fdd96b5" + "29f2b448-f8e3-4a50-88c3-0691a0519614" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -765,22 +768,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1187" ], "x-ms-correlation-request-id": [ - "2e633442-0b67-43de-9116-39d10ff83f17" + "03ddb28f-6444-49d5-a2fa-20abe3376c0e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132054Z:2e633442-0b67-43de-9116-39d10ff83f17" + "SOUTHEASTASIA:20210219T091028Z:03ddb28f-6444-49d5-a2fa-20abe3376c0e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:54 GMT" + "Fri, 19 Feb 2021 09:10:27 GMT" ], "Content-Length": [ - "388" + "438" ], "Content-Type": [ "application/json" @@ -789,26 +792,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope2\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:54.5464304Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope2\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2021-02-19T09:10:28.2513809Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:28.2513809Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9lbmNyeXB0aW9uU2NvcGVzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9lbmNyeXB0aW9uU2NvcGVzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af114a90-e288-4b7c-8fb8-c34ef6637900" + "bf5ce1db-d94a-4151-a818-e08f153cf4ac" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -819,7 +822,7 @@ "no-cache" ], "x-ms-request-id": [ - "27be76af-6d28-4697-9b2a-5698135514a6" + "ccebfd6c-5eb8-4787-b214-d8c281561a08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,22 +831,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11982" ], "x-ms-correlation-request-id": [ - "a9093030-30e7-49da-9608-fa6da809a603" + "1444c8d7-55d8-47af-aa8e-6f6a6266414b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132055Z:a9093030-30e7-49da-9608-fa6da809a603" + "SOUTHEASTASIA:20210219T091028Z:1444c8d7-55d8-47af-aa8e-6f6a6266414b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:54 GMT" + "Fri, 19 Feb 2021 09:10:28 GMT" ], "Content-Length": [ - "787" + "878" ], "Content-Type": [ "application/json" @@ -852,26 +855,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:52.8192778Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/encryptionScopes/testscope2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope2\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"keyVaultProperties\": {},\r\n \"creationTime\": \"2020-03-30T13:20:54.5464304Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"creationTime\": \"2021-02-19T09:10:26.2460207Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:27.7210212Z\",\r\n \"state\": \"Enabled\",\r\n \"requireInfrastructureEncryption\": true\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/encryptionScopes/testscope2\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/encryptionScopes\",\r\n \"name\": \"testscope2\",\r\n \"properties\": {\r\n \"source\": \"Microsoft.Storage\",\r\n \"creationTime\": \"2021-02-19T09:10:28.2513809Z\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:28.2513809Z\",\r\n \"state\": \"Enabled\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/containerpstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcnBzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/containerpstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcnBzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope\",\r\n \"denyEncryptionScopeOverride\": true\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5ad2e64-5a8c-4dce-adfe-cf2bbd943e0a" + "99e2b2f8-0d8c-4c55-9b43-2a01b3088ac6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -888,10 +891,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7D4AD2D82160C\"" + "\"0x8D8D4B633D98320\"" ], "x-ms-request-id": [ - "72c23250-663a-4a08-bb44-1b39bbba4cbe" + "4f632951-a291-4d2f-b362-d56dd7b54e86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -900,22 +903,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1186" ], "x-ms-correlation-request-id": [ - "d3a2968f-00c6-4b43-bce3-486de0d2e792" + "a8a70248-661f-49d8-b212-e5bf0b18bd10" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132055Z:d3a2968f-00c6-4b43-bce3-486de0d2e792" + "SOUTHEASTASIA:20210219T091029Z:a8a70248-661f-49d8-b212-e5bf0b18bd10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:55 GMT" + "Fri, 19 Feb 2021 09:10:28 GMT" ], "Content-Length": [ - "438" + "481" ], "Content-Type": [ "application/json" @@ -924,26 +927,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/containerpstestrg8811\",\r\n \"name\": \"containerpstestrg8811\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope\",\r\n \"denyEncryptionScopeOverride\": true,\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/containerpstestrg2605\",\r\n \"name\": \"containerpstestrg2605\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"testscope\",\r\n \"denyEncryptionScopeOverride\": true,\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/containerpstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcnBzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/containerpstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcnBzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "519437a7-e85f-4d2a-ab3b-3c388dffa377" + "c316b163-7521-4090-ad95-8949379055d3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -954,10 +957,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7D4AD2D82160C\"" + "\"0x8D8D4B633D98320\"" ], "x-ms-request-id": [ - "fd6d1575-c9dc-4f86-b57b-dc6c708ab01a" + "9775dfc4-9ebb-4dbe-a815-93975accf9e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -966,22 +969,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11981" ], "x-ms-correlation-request-id": [ - "2275835f-b4a2-4730-a59a-cda21f21fa47" + "2edb3b1b-4396-464e-80f7-e534d861c077" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132056Z:2275835f-b4a2-4730-a59a-cda21f21fa47" + "SOUTHEASTASIA:20210219T091029Z:2edb3b1b-4396-464e-80f7-e534d861c077" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:56 GMT" + "Fri, 19 Feb 2021 09:10:29 GMT" ], "Content-Length": [ - "636" + "679" ], "Content-Type": [ "application/json" @@ -990,26 +993,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/containerpstestrg8811\",\r\n \"name\": \"containerpstestrg8811\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D7D4AD2D82160C\\\"\",\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope\",\r\n \"denyEncryptionScopeOverride\": true,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2020-03-30T13:20:55Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/containerpstestrg2605\",\r\n \"name\": \"containerpstestrg2605\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D8D4B633D98320\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"testscope\",\r\n \"denyEncryptionScopeOverride\": true,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:29Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/container2pstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcjJwc3Rlc3RyZzg4MTE/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/container2pstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcjJwc3Rlc3RyZzI2MDU/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope2\",\r\n \"denyEncryptionScopeOverride\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1a6235e0-1f88-4674-8633-69c6c1a2c444" + "5a70dc55-3990-48f1-a1de-d708643e4abe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1026,10 +1029,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7D4AD2E8E8656\"" + "\"0x8D8D4B634747FA6\"" ], "x-ms-request-id": [ - "05d878b4-e539-4b12-b4d1-c93811da0a04" + "b110cb91-e7d3-40fd-af00-8c82e7225fbe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,22 +1041,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1185" ], "x-ms-correlation-request-id": [ - "522616e4-1193-4dd4-a236-271ae1a51bbe" + "7650b7b9-f63b-45a9-ae1c-09d87c172d09" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132057Z:522616e4-1193-4dd4-a236-271ae1a51bbe" + "SOUTHEASTASIA:20210219T091030Z:7650b7b9-f63b-45a9-ae1c-09d87c172d09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:57 GMT" + "Fri, 19 Feb 2021 09:10:29 GMT" ], "Content-Length": [ - "442" + "485" ], "Content-Type": [ "application/json" @@ -1062,26 +1065,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/container2pstestrg8811\",\r\n \"name\": \"container2pstestrg8811\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope2\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/container2pstestrg2605\",\r\n \"name\": \"container2pstestrg2605\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"testscope2\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/container2pstestrg8811?api-version=2021-01-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnODgxMS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnODgxMS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcjJwc3Rlc3RyZzg4MTE/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/container2pstestrg2605?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMjYwNS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMjYwNS9ibG9iU2VydmljZXMvZGVmYXVsdC9jb250YWluZXJzL2NvbnRhaW5lcjJwc3Rlc3RyZzI2MDU/YXBpLXZlcnNpb249MjAyMS0wMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d278110d-9571-4976-aade-fbee350f71db" + "1aeb9399-acce-4a25-bd40-6305658a0544" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/15.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/19.0.0.0" ] }, "ResponseHeaders": { @@ -1092,10 +1095,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7D4AD2E8E8656\"" + "\"0x8D8D4B634747FA6\"" ], "x-ms-request-id": [ - "4b0fe876-d23d-4ba1-b103-8ee1dc41b203" + "1dfaeb69-6add-416c-b1ef-d477a75b9d99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1104,22 +1107,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11980" ], "x-ms-correlation-request-id": [ - "29619a23-3c8d-4a06-9ed5-ee03934a95c2" + "5666056f-0ee1-4d14-bbc6-37784b5058ad" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132057Z:29619a23-3c8d-4a06-9ed5-ee03934a95c2" + "SOUTHEASTASIA:20210219T091030Z:5666056f-0ee1-4d14-bbc6-37784b5058ad" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:20:57 GMT" + "Fri, 19 Feb 2021 09:10:30 GMT" ], "Content-Length": [ - "640" + "683" ], "Content-Type": [ "application/json" @@ -1128,26 +1131,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg8811/providers/Microsoft.Storage/storageAccounts/stopstestrg8811/blobServices/default/containers/container2pstestrg8811\",\r\n \"name\": \"container2pstestrg8811\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D7D4AD2E8E8656\\\"\",\r\n \"properties\": {\r\n \"defaultEncryptionScope\": \"testscope2\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2020-03-30T13:20:57Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg2605/providers/Microsoft.Storage/storageAccounts/stopstestrg2605/blobServices/default/containers/container2pstestrg2605\",\r\n \"name\": \"container2pstestrg2605\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/blobServices/containers\",\r\n \"etag\": \"\\\"0x8D8D4B634747FA6\\\"\",\r\n \"properties\": {\r\n \"deleted\": false,\r\n \"remainingRetentionDays\": 0,\r\n \"defaultEncryptionScope\": \"testscope2\",\r\n \"denyEncryptionScopeOverride\": false,\r\n \"publicAccess\": \"None\",\r\n \"leaseStatus\": \"Unlocked\",\r\n \"leaseState\": \"Available\",\r\n \"lastModifiedTime\": \"2021-02-19T09:10:30Z\",\r\n \"legalHold\": {\r\n \"hasLegalHold\": false,\r\n \"tags\": []\r\n },\r\n \"hasImmutabilityPolicy\": false,\r\n \"hasLegalHold\": false\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg8811?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnODgxMT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg2605?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMjYwNT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2902fda9-8adb-4fa1-976f-53f949730a7c" + "16cff3ca-887a-4fc7-83ab-957f41e8ff27" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1158,22 +1161,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-request-id": [ - "5958798b-ac92-4f94-990a-7011e8d7b8ea" + "fb8fa581-c514-4186-83e0-608611ae99d0" ], "x-ms-correlation-request-id": [ - "5958798b-ac92-4f94-990a-7011e8d7b8ea" + "fb8fa581-c514-4186-83e0-608611ae99d0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132100Z:5958798b-ac92-4f94-990a-7011e8d7b8ea" + "SOUTHEASTASIA:20210219T091033Z:fb8fa581-c514-4186-83e0-608611ae99d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1182,7 +1185,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:21:00 GMT" + "Fri, 19 Feb 2021 09:10:33 GMT" ], "Expires": [ "-1" @@ -1195,16 +1198,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1215,136 +1218,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "2a765eee-2cf8-497e-ac32-eaa5f1efc785" - ], - "x-ms-correlation-request-id": [ - "2a765eee-2cf8-497e-ac32-eaa5f1efc785" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132116Z:2a765eee-2cf8-497e-ac32-eaa5f1efc785" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Mar 2020 13:21:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "d1f0dca4-886e-438d-ac58-2e57035fef72" - ], - "x-ms-correlation-request-id": [ - "d1f0dca4-886e-438d-ac58-2e57035fef72" - ], - "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132131Z:d1f0dca4-886e-438d-ac58-2e57035fef72" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 30 Mar 2020 13:21:30 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.28207.03", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11997" ], "x-ms-request-id": [ - "368bc03a-0d07-4ffa-875b-c9761f4608af" + "9d0a485f-7890-4fe0-b513-7220c026eed3" ], "x-ms-correlation-request-id": [ - "368bc03a-0d07-4ffa-875b-c9761f4608af" + "9d0a485f-7890-4fe0-b513-7220c026eed3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132147Z:368bc03a-0d07-4ffa-875b-c9761f4608af" + "SOUTHEASTASIA:20210219T091048Z:9d0a485f-7890-4fe0-b513-7220c026eed3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1353,7 +1242,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:21:47 GMT" + "Fri, 19 Feb 2021 09:10:48 GMT" ], "Expires": [ "-1" @@ -1366,16 +1255,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1386,22 +1275,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11996" ], "x-ms-request-id": [ - "9aac9145-74ce-42ef-a41f-31dc633c7524" + "fcf15d59-a6c8-4c4a-a824-de03f7174469" ], "x-ms-correlation-request-id": [ - "9aac9145-74ce-42ef-a41f-31dc633c7524" + "fcf15d59-a6c8-4c4a-a824-de03f7174469" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132202Z:9aac9145-74ce-42ef-a41f-31dc633c7524" + "SOUTHEASTASIA:20210219T091104Z:fcf15d59-a6c8-4c4a-a824-de03f7174469" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1410,7 +1299,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:22:02 GMT" + "Fri, 19 Feb 2021 09:11:03 GMT" ], "Expires": [ "-1" @@ -1423,16 +1312,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1443,22 +1332,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11995" ], "x-ms-request-id": [ - "b1228b34-4156-4da0-9d25-de5cc0b86515" + "b30391eb-2801-4965-a05e-8cf90545fd92" ], "x-ms-correlation-request-id": [ - "b1228b34-4156-4da0-9d25-de5cc0b86515" + "b30391eb-2801-4965-a05e-8cf90545fd92" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132218Z:b1228b34-4156-4da0-9d25-de5cc0b86515" + "SOUTHEASTASIA:20210219T091119Z:b30391eb-2801-4965-a05e-8cf90545fd92" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1467,7 +1356,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:22:17 GMT" + "Fri, 19 Feb 2021 09:11:18 GMT" ], "Expires": [ "-1" @@ -1480,16 +1369,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1500,22 +1389,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11994" ], "x-ms-request-id": [ - "f691c125-cd39-4a09-aaa9-f8019602f8e6" + "b7eadb2a-c1fe-42bc-a758-cdd578411726" ], "x-ms-correlation-request-id": [ - "f691c125-cd39-4a09-aaa9-f8019602f8e6" + "b7eadb2a-c1fe-42bc-a758-cdd578411726" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132233Z:f691c125-cd39-4a09-aaa9-f8019602f8e6" + "SOUTHEASTASIA:20210219T091135Z:b7eadb2a-c1fe-42bc-a758-cdd578411726" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1524,7 +1413,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:22:32 GMT" + "Fri, 19 Feb 2021 09:11:34 GMT" ], "Expires": [ "-1" @@ -1537,16 +1426,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1557,22 +1446,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11993" ], "x-ms-request-id": [ - "0babe14e-2b35-451e-9a20-d20422c78204" + "848f56cb-2eaa-436a-807a-9efab8e20122" ], "x-ms-correlation-request-id": [ - "0babe14e-2b35-451e-9a20-d20422c78204" + "848f56cb-2eaa-436a-807a-9efab8e20122" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132248Z:0babe14e-2b35-451e-9a20-d20422c78204" + "SOUTHEASTASIA:20210219T091150Z:848f56cb-2eaa-436a-807a-9efab8e20122" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1581,7 +1470,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:22:48 GMT" + "Fri, 19 Feb 2021 09:11:49 GMT" ], "Expires": [ "-1" @@ -1594,16 +1483,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1614,22 +1503,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11992" ], "x-ms-request-id": [ - "8ca2896f-e0fb-45a8-905e-4f58b5ac1dd2" + "50c784ee-9940-4c2e-a4f9-103448351e53" ], "x-ms-correlation-request-id": [ - "8ca2896f-e0fb-45a8-905e-4f58b5ac1dd2" + "50c784ee-9940-4c2e-a4f9-103448351e53" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132304Z:8ca2896f-e0fb-45a8-905e-4f58b5ac1dd2" + "SOUTHEASTASIA:20210219T091205Z:50c784ee-9940-4c2e-a4f9-103448351e53" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1527,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:23:03 GMT" + "Fri, 19 Feb 2021 09:12:05 GMT" ], "Expires": [ "-1" @@ -1651,16 +1540,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1671,16 +1560,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11991" ], "x-ms-request-id": [ - "fbf3c999-eb87-418c-9adb-c184c08178be" + "22e17543-030c-4de3-aba2-2ee51c2c6c0a" ], "x-ms-correlation-request-id": [ - "fbf3c999-eb87-418c-9adb-c184c08178be" + "22e17543-030c-4de3-aba2-2ee51c2c6c0a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132319Z:fbf3c999-eb87-418c-9adb-c184c08178be" + "SOUTHEASTASIA:20210219T091221Z:22e17543-030c-4de3-aba2-2ee51c2c6c0a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,7 +1578,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:23:19 GMT" + "Fri, 19 Feb 2021 09:12:21 GMT" ], "Expires": [ "-1" @@ -1702,16 +1591,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzg4MTEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemc0TVRFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzI2MDUtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSekkyTURVdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29719.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.9" + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" ] }, "ResponseHeaders": { @@ -1722,16 +1611,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11990" ], "x-ms-request-id": [ - "23396372-24e3-444f-ad27-9c90cb9a387d" + "d81b2c55-e46e-4d0a-965f-f87c65f603a2" ], "x-ms-correlation-request-id": [ - "23396372-24e3-444f-ad27-9c90cb9a387d" + "d81b2c55-e46e-4d0a-965f-f87c65f603a2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200330T132320Z:23396372-24e3-444f-ad27-9c90cb9a387d" + "SOUTHEASTASIA:20210219T091221Z:d81b2c55-e46e-4d0a-965f-f87c65f603a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1740,7 +1629,7 @@ "nosniff" ], "Date": [ - "Mon, 30 Mar 2020 13:23:20 GMT" + "Fri, 19 Feb 2021 09:12:21 GMT" ], "Expires": [ "-1" @@ -1755,7 +1644,7 @@ ], "Names": { "Test-StorageBlobContainerEncryptionScope": [ - "pstestrg8811" + "pstestrg2605" ] }, "Variables": { diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestFileServiceProperties.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestFileServiceProperties.json new file mode 100644 index 000000000000..cc9f396cea80 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestFileServiceProperties.json @@ -0,0 +1,1335 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7602?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzYwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "462e6523-e9c0-4fbb-b13a-8d293ae556b1" + ], + "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": [ + "35" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-request-id": [ + "2e56ce79-327b-43c3-adfe-aeab8e5f383e" + ], + "x-ms-correlation-request-id": [ + "2e56ce79-327b-43c3-adfe-aeab8e5f383e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094846Z:2e56ce79-327b-43c3-adfe-aeab8e5f383e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:48:45 GMT" + ], + "Content-Length": [ + "184" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602\",\r\n \"name\": \"pstestrg7602\",\r\n \"location\": \"centraluseuap\",\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\": \"stopstestrg7602\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f198da7b-89ad-40c3-9c65-bdcfbedcc850" + ], + "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": [ + "fac8e20c-0625-4f96-80c3-6a958421d204" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "35e56361-54a3-429b-9d33-ce86f68758e4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094847Z:35e56361-54a3-429b-9d33-ce86f68758e4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:48:47 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/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"location\": \"centraluseuap\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f198da7b-89ad-40c3-9c65-bdcfbedcc850" + ], + "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": [ + "106" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/centraluseuap/asyncoperations/b3ab2b4d-890e-43bf-a6c6-b376cc0a9049?monitor=true&api-version=2021-01-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "b3ab2b4d-890e-43bf-a6c6-b376cc0a9049" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1190" + ], + "x-ms-correlation-request-id": [ + "7c1e1df6-01c7-41e0-a604-7cd59358fe6b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094855Z:7c1e1df6-01c7-41e0-a604-7cd59358fe6b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:48:55 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/centraluseuap/asyncoperations/b3ab2b4d-890e-43bf-a6c6-b376cc0a9049?monitor=true&api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvY2VudHJhbHVzZXVhcC9hc3luY29wZXJhdGlvbnMvYjNhYjJiNGQtODkwZS00M2JmLWE2YzYtYjM3NmNjMGE5MDQ5P21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f198da7b-89ad-40c3-9c65-bdcfbedcc850" + ], + "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": [ + "211ad8b7-e35f-45ef-a18a-a87088893ec1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-correlation-request-id": [ + "1b85d0b4-e8f4-494d-9333-326406a42d3b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094912Z:1b85d0b4-e8f4-494d-9333-326406a42d3b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:12 GMT" + ], + "Content-Length": [ + "1000" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602\",\r\n \"name\": \"stopstestrg7602\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"largeFileSharesState\": \"Enabled\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:48:54.6852513Z\",\r\n \"primaryEndpoints\": {\r\n \"file\": \"https://stopstestrg7602.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f198da7b-89ad-40c3-9c65-bdcfbedcc850" + ], + "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": [ + "0cac5503-54bf-4ea9-9507-f29a8176795c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11986" + ], + "x-ms-correlation-request-id": [ + "0a501c6d-c5ca-4d43-9fe5-a3e0b370becf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094913Z:0a501c6d-c5ca-4d43-9fe5-a3e0b370becf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:12 GMT" + ], + "Content-Length": [ + "1000" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602\",\r\n \"name\": \"stopstestrg7602\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"largeFileSharesState\": \"Enabled\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:48:54.6852513Z\",\r\n \"primaryEndpoints\": {\r\n \"file\": \"https://stopstestrg7602.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMjEtMDEtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9710d130-6999-497e-b72a-8b49fe4b83fc" + ], + "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": [ + "130528e6-5d41-4f37-87a3-7ef70f9e5da0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], + "x-ms-correlation-request-id": [ + "5f4f0cff-6b9a-4c78-b6af-572553876860" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094913Z:5f4f0cff-6b9a-4c78-b6af-572553876860" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:12 GMT" + ], + "Content-Length": [ + "1012" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"kind\": \"FileStorage\",\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602\",\r\n \"name\": \"stopstestrg7602\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"centraluseuap\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"privateEndpointConnections\": [],\r\n \"largeFileSharesState\": \"Enabled\",\r\n \"networkAcls\": {\r\n \"bypass\": \"AzureServices\",\r\n \"virtualNetworkRules\": [],\r\n \"ipRules\": [],\r\n \"defaultAction\": \"Allow\"\r\n },\r\n \"supportsHttpsTrafficOnly\": true,\r\n \"encryption\": {\r\n \"services\": {\r\n \"file\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2021-02-19T09:48:54.7451984Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2021-02-19T09:48:54.6852513Z\",\r\n \"primaryEndpoints\": {\r\n \"file\": \"https://stopstestrg7602.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"centraluseuap\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": true\r\n },\r\n \"versions\": \"SMB2.1;SMB3.0;SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos;NTLMv2\",\r\n \"kerberosTicketEncryption\": \"RC4-HMAC;AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM;AES-128-GCM;AES-256-GCM\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea3d596-e2ad-455c-9842-64823cac1f62" + ], + "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": [ + "378" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "05b4d9e5-63bd-4dd8-8271-2b72bfaeda73" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1188" + ], + "x-ms-correlation-request-id": [ + "00e79c2f-3b3a-4cbe-88dc-446791050053" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094916Z:00e79c2f-3b3a-4cbe-88dc-446791050053" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:16 GMT" + ], + "Content-Length": [ + "500" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": true\r\n },\r\n \"versions\": \"SMB2.1;SMB3.0;SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos;NTLMv2\",\r\n \"kerberosTicketEncryption\": \"RC4-HMAC;AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM;AES-128-GCM;AES-256-GCM\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n },\r\n \"versions\": \"SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos\",\r\n \"kerberosTicketEncryption\": \"AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e811e374-97d0-4724-bd7a-bcd45021cd09" + ], + "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": [ + "325" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "80571efd-f9e5-40f6-bfc3-b29d1f19507c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "9201b683-c4ea-4faf-915f-0bdc558c27d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094918Z:9201b683-c4ea-4faf-915f-0bdc558c27d2" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:17 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n },\r\n \"versions\": \"SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos\",\r\n \"kerberosTicketEncryption\": \"AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"versions\": \"\",\r\n \"authenticationMethods\": \"\",\r\n \"kerberosTicketEncryption\": \"\",\r\n \"channelEncryption\": \"\"\r\n }\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9ae5c44-9acc-423d-bde0-dc3488175a87" + ], + "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": [ + "224" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "5d2336c4-894e-4028-bde3-80ddd0ccd13d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1186" + ], + "x-ms-correlation-request-id": [ + "8965738a-ee92-4882-94ee-bc349dea3673" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094919Z:8965738a-ee92-4882-94ee-bc349dea3673" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:18 GMT" + ], + "Content-Length": [ + "380" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"versions\": \"\",\r\n \"authenticationMethods\": \"\",\r\n \"kerberosTicketEncryption\": \"\",\r\n \"channelEncryption\": \"\"\r\n }\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5ea3d596-e2ad-455c-9842-64823cac1f62" + ], + "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": [ + "69ea6af4-408e-41aa-b19a-ce246fef30e0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11984" + ], + "x-ms-correlation-request-id": [ + "0c572467-5d1d-4918-adbc-b557820fc369" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094917Z:0c572467-5d1d-4918-adbc-b557820fc369" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:16 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": true\r\n },\r\n \"versions\": \"SMB2.1;SMB3.0;SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos;NTLMv2\",\r\n \"kerberosTicketEncryption\": \"RC4-HMAC;AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM;AES-128-GCM;AES-256-GCM\"\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b7df0fb-fa1f-406a-8a7c-2e872f71bfcd" + ], + "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": [ + "cd64f2a9-b24f-4628-b8dc-f555d18a7397" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "386e3adf-03f8-44d6-81ab-be6faabfda2a" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094917Z:386e3adf-03f8-44d6-81ab-be6faabfda2a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:16 GMT" + ], + "Content-Length": [ + "625" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": true\r\n },\r\n \"versions\": \"SMB2.1;SMB3.0;SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos;NTLMv2\",\r\n \"kerberosTicketEncryption\": \"RC4-HMAC;AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM;AES-128-GCM;AES-256-GCM\"\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e811e374-97d0-4724-bd7a-bcd45021cd09" + ], + "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": [ + "96459275-27e4-4de5-8293-0d60f7dd7208" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11982" + ], + "x-ms-correlation-request-id": [ + "16f2e36f-fc38-4d01-80be-caabfc56e391" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094918Z:16f2e36f-fc38-4d01-80be-caabfc56e391" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:17 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n },\r\n \"versions\": \"SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos\",\r\n \"kerberosTicketEncryption\": \"AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM\"\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9c698871-538c-47e9-81f0-2d9647e05b6d" + ], + "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": [ + "413f7ddb-9bd3-480a-b3fb-0d4b8cf9f61b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11981" + ], + "x-ms-correlation-request-id": [ + "8cd14767-1384-481c-8842-c9967a7779cf" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094918Z:8cd14767-1384-481c-8842-c9967a7779cf" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:18 GMT" + ], + "Content-Length": [ + "572" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n },\r\n \"versions\": \"SMB3.1.1\",\r\n \"authenticationMethods\": \"Kerberos\",\r\n \"kerberosTicketEncryption\": \"AES-256\",\r\n \"channelEncryption\": \"AES-128-CCM\"\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e9ae5c44-9acc-423d-bde0-dc3488175a87" + ], + "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": [ + "48c43d5f-3437-4bad-8ace-449748ebbdf1" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11980" + ], + "x-ms-correlation-request-id": [ + "f4a7ea69-ea57-402a-92c0-d02d0f3b6d89" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094920Z:f4a7ea69-ea57-402a-92c0-d02d0f3b6d89" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:19 GMT" + ], + "Content-Length": [ + "444" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMi9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "164e9aed-e077-4f28-a2cb-11631080d95d" + ], + "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": [ + "fd60526a-e9aa-442f-99d4-2e5fa16821e8" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11979" + ], + "x-ms-correlation-request-id": [ + "1b567b6c-f4d3-449d-b2f8-adfda0c43891" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094920Z:1b567b6c-f4d3-449d-b2f8-adfda0c43891" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:19 GMT" + ], + "Content-Length": [ + "444" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"protocolSettings\": {\r\n \"smb\": {\r\n \"multichannel\": {\r\n \"enabled\": false\r\n }\r\n }\r\n },\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 7\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7602/providers/Microsoft.Storage/storageAccounts/stopstestrg7602?api-version=2021-01-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzYwMi9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzYwMj9hcGktdmVyc2lvbj0yMDIxLTAxLTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0052186e-18a2-461e-b865-0eb695f82a19" + ], + "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": [ + "af52d7c5-06b2-40e0-b02f-5402ec41a713" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "8e0eb425-07dd-4a41-a428-5daf4c0dff48" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094930Z:8e0eb425-07dd-4a41-a428-5daf4c0dff48" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:29 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7602?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzYwMj9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "25224da1-fed4-442c-9ee6-08d41c465bd8" + ], + "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" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14997" + ], + "x-ms-request-id": [ + "6dfa7b25-9b0e-46ac-8598-2ecbb2e55949" + ], + "x-ms-correlation-request-id": [ + "6dfa7b25-9b0e-46ac-8598-2ecbb2e55949" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094934Z:6dfa7b25-9b0e-46ac-8598-2ecbb2e55949" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:33 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMyTURJdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11978" + ], + "x-ms-request-id": [ + "6b0cd5e9-b90e-4747-ad85-e7c13f88fd8e" + ], + "x-ms-correlation-request-id": [ + "6b0cd5e9-b90e-4747-ad85-e7c13f88fd8e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T094949Z:6b0cd5e9-b90e-4747-ad85-e7c13f88fd8e" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:49:49 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMyTURJdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11977" + ], + "x-ms-request-id": [ + "242a2c99-3eb3-4f88-a877-ebab8021f68b" + ], + "x-ms-correlation-request-id": [ + "242a2c99-3eb3-4f88-a877-ebab8021f68b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T095005Z:242a2c99-3eb3-4f88-a877-ebab8021f68b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:50:05 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMyTURJdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11976" + ], + "x-ms-request-id": [ + "d210b485-c24d-41a8-9aa1-a559298251d2" + ], + "x-ms-correlation-request-id": [ + "d210b485-c24d-41a8-9aa1-a559298251d2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T095020Z:d210b485-c24d-41a8-9aa1-a559298251d2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:50:20 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc2MDItQ0VOVFJBTFVTRVVBUCIsImpvYkxvY2F0aW9uIjoiY2VudHJhbHVzZXVhcCJ9?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMyTURJdFEwVk9WRkpCVEZWVFJWVkJVQ0lzSW1wdllreHZZMkYwYVc5dUlqb2lZMlZ1ZEhKaGJIVnpaWFZoY0NKOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29719.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19042.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.31" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11975" + ], + "x-ms-request-id": [ + "652e8d5c-1272-4606-a89f-965081335ea0" + ], + "x-ms-correlation-request-id": [ + "652e8d5c-1272-4606-a89f-965081335ea0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20210219T095021Z:652e8d5c-1272-4606-a89f-965081335ea0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 19 Feb 2021 09:50:21 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-FileServiceProperties": [ + "pstestrg7602" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 3fb4ba679c54..d23e7d987259 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,10 +18,22 @@ - Additional information about change #1 --> ## Upcoming Release +* Upgraded to Microsoft.Azure.Management.Storage 19.0.0, to support new API version 2021-01-01. * Supported resource access rule in NetworkRuleSet - `Update-AzStorageAccountNetworkRuleSet` - `Add-AzStorageAccountNetworkRule` - `Remove-AzStorageAccountNetworkRule` +* Supported Blob version and Append Blob type in Management Policy + - `Add-AzStorageAccountManagementPolicyAction` + - `New-AzStorageAccountManagementPolicyFilter` + - `Set-AzStorageAccountManagementPolicy` +* Supported secure SMB setting in File service properties + - `Update-AzStorageFileServiceProperty` +* Supported create/update account with AllowSharedKeyAccess + - `New-AzStorageAccount` + - `Set-AzStorageAccount` +* Supported create Encryption Scope with RequireInfrastructureEncryption + - `New-AzStorageEncryptionScope` ## Version 3.3.0 * Supported RoutingPreference settings in create/update Storage account diff --git a/src/Storage/Storage.Management/Models/PSEncryptionScope.cs b/src/Storage/Storage.Management/Models/PSEncryptionScope.cs index d4400973229a..4aa52d3b8cea 100644 --- a/src/Storage/Storage.Management/Models/PSEncryptionScope.cs +++ b/src/Storage/Storage.Management/Models/PSEncryptionScope.cs @@ -40,6 +40,7 @@ public PSEncryptionScope(StorageModels.EncryptionScope scope) this.Source = scope.Source; this.State = scope.State; this.KeyVaultProperties = scope.KeyVaultProperties is null ? null : new PSEncryptionScopeKeyVaultProperties(scope.KeyVaultProperties); + this.RequireInfrastructureEncryption = scope.RequireInfrastructureEncryption; } [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.List, Position = 0)] @@ -61,6 +62,8 @@ public PSEncryptionScope(StorageModels.EncryptionScope scope) public PSEncryptionScopeKeyVaultProperties KeyVaultProperties { get; set; } + public bool? RequireInfrastructureEncryption { get; set; } + [Ps1Xml(Label = "LastModifiedTime", Target = ViewControl.List, Position = 4)] public DateTime? LastModifiedTime { get; set; } diff --git a/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs index 90578c8b3efd..76060ed2fef9 100644 --- a/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs +++ b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs @@ -74,18 +74,18 @@ public PSProtocolSettings(ProtocolSettings protocolSettings) public class PSSmbSetting { public PSMultichannel Multichannel { get; set; } - public string Versions { get; set; } - public string AuthenticationMethods { get; set; } - public string KerberosTicketEncryption { get; set; } - public string ChannelEncryption { get; set; } + public string[] Versions { get; set; } + public string[] AuthenticationMethods { get; set; } + public string[] KerberosTicketEncryption { get; set; } + public string[] ChannelEncryption { get; set; } public PSSmbSetting(SmbSetting smbSetting) { this.Multichannel = smbSetting.Multichannel is null ? null : new PSMultichannel(smbSetting.Multichannel); - this.Versions = smbSetting.Versions; - this.AuthenticationMethods = smbSetting.AuthenticationMethods; - this.KerberosTicketEncryption = smbSetting.KerberosTicketEncryption; - this.ChannelEncryption = smbSetting.ChannelEncryption; + this.Versions = smbSetting.Versions is null ? null : smbSetting.Versions.Split(new char[] { ';'}); + this.AuthenticationMethods = smbSetting.AuthenticationMethods is null ? null : smbSetting.AuthenticationMethods.Split(new char[] { ';' }); + this.KerberosTicketEncryption = smbSetting.KerberosTicketEncryption is null ? null : smbSetting.KerberosTicketEncryption.Split(new char[] { ';' }); + this.ChannelEncryption = smbSetting.ChannelEncryption is null ? null : smbSetting.ChannelEncryption.Split(new char[] { ';' }); } } diff --git a/src/Storage/Storage.Management/Storage.Management.format.ps1xml b/src/Storage/Storage.Management/Storage.Management.format.ps1xml index 1aac04d45346..5e39db7818bf 100644 --- a/src/Storage/Storage.Management/Storage.Management.format.ps1xml +++ b/src/Storage/Storage.Management/Storage.Management.format.ps1xml @@ -246,10 +246,30 @@ $_.BaseBlob.Delete.DaysAfterModificationGreaterThan + + $_.Snapshot.TierToCool.DaysAfterCreationGreaterThan + + + + $_.Snapshot.TierToArchive.DaysAfterCreationGreaterThan + + $_.Snapshot.Delete.DaysAfterCreationGreaterThan - + + + $_.Version.TierToCool.DaysAfterCreationGreaterThan + + + + $_.Version.TierToArchive.DaysAfterCreationGreaterThan + + + + $_.Version.Delete.DaysAfterCreationGreaterThan + + @@ -713,6 +733,10 @@ Left + + + Left + @@ -729,6 +753,9 @@ $_.KeyVaultProperties.keyUri + + RequireInfrastructureEncryption + diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs index a0a793593973..cbc0c8e734d9 100644 --- a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs +++ b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageAccount.cs @@ -355,23 +355,6 @@ public string MinimumTlsVersion } private string minimumTlsVersion = null; - [Parameter( - Mandatory = false, - HelpMessage = "Enable NFS 3.0 protocol support if sets to true")] - [ValidateNotNullOrEmpty] - public bool EnableNfsV3 - { - get - { - return enableNfsV3.Value; - } - set - { - enableNfsV3 = value; - } - } - private bool? enableNfsV3 = null; - [Parameter( Mandatory = false, HelpMessage = "Indicates whether the storage account permits requests to be authorized with the account access key via Shared Key. " + @@ -525,10 +508,6 @@ public override void ExecuteCmdlet() { createParameters.RoutingPreference = new RoutingPreference(this.RoutingChoice, this.publishMicrosoftEndpoint, this.publishInternetEndpoint); } - if (enableNfsV3 != null) - { - createParameters.EnableNfsV3 = enableNfsV3; - } if (allowSharedKeyAccess != null) { createParameters.AllowSharedKeyAccess = allowSharedKeyAccess; diff --git a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageEncryptionScope.cs b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageEncryptionScope.cs index b64bbfd3fc7b..197ad4c87c27 100644 --- a/src/Storage/Storage.Management/StorageAccount/NewAzureStorageEncryptionScope.cs +++ b/src/Storage/Storage.Management/StorageAccount/NewAzureStorageEncryptionScope.cs @@ -117,7 +117,8 @@ public class NewAzureStorageEncryptionScopeCommand : StorageFileBaseCmdlet [ValidateNotNullOrEmpty] public string KeyUri { get; set; } - + [Parameter(Mandatory = false, HelpMessage = "The encryption scope will apply a secondary layer of encryption with platform managed keys for data at rest.")] + public SwitchParameter RequireInfrastructureEncryption { get; set; } public override void ExecuteCmdlet() { @@ -147,6 +148,10 @@ public override void ExecuteCmdlet() { scope.Source = EncryptionScopeSource.MicrosoftStorage; } + if (this.RequireInfrastructureEncryption.IsPresent) + { + scope.RequireInfrastructureEncryption = true; + } scope = this.StorageClient.EncryptionScopes.Put( this.ResourceGroupName, diff --git a/src/Storage/Storage.Management/help/Add-AzStorageAccountManagementPolicyAction.md b/src/Storage/Storage.Management/help/Add-AzStorageAccountManagementPolicyAction.md index 0b5c65adeb10..068051046af9 100644 --- a/src/Storage/Storage.Management/help/Add-AzStorageAccountManagementPolicyAction.md +++ b/src/Storage/Storage.Management/help/Add-AzStorageAccountManagementPolicyAction.md @@ -46,7 +46,12 @@ PS C:\>$action BaseBlob.TierToCool.DaysAfterModificationGreaterThan : 30 BaseBlob.TierToArchive.DaysAfterModificationGreaterThan : 50 BaseBlob.Delete.DaysAfterModificationGreaterThan : 100 +Snapshot.TierToCool.DaysAfterCreationGreaterThan : +Snapshot.TierToArchive.DaysAfterCreationGreaterThan : Snapshot.Delete.DaysAfterCreationGreaterThan : 100 +Version.TierToCool.DaysAfterCreationGreaterThan : +Version.TierToArchive.DaysAfterCreationGreaterThan : +Version.Delete.DaysAfterCreationGreaterThan : PS C:\>$filter = New-AzStorageAccountManagementPolicyFilter PS C:\>$rule = New-AzStorageAccountManagementPolicyRule -Name Test -Action $action -Filter $filter @@ -55,6 +60,33 @@ PS C:\>$policy = Set-AzStorageAccountManagementPolicy -ResourceGroupName "myreso The first command create a ManagementPolicy Action Group object, the following 3 commands add 3 actions to the object. Then add it to a management policy rule and set to a Storage account. +### Example 2: Creates a ManagementPolicy Action Group object with 6 actions on snapshot and blob version, then add it to a management policy rule and set to a Storage account +``` +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -SnapshotAction Delete -daysAfterCreationGreaterThan 40 +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -SnapshotAction TierToArchive -daysAfterCreationGreaterThan 50 +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -SnapshotAction TierToCool -daysAfterCreationGreaterThan 60 +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -BlobVersionAction Delete -daysAfterCreationGreaterThan 70 +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -BlobVersionAction TierToArchive -daysAfterCreationGreaterThan 80 +PS C:\> $action = Add-AzStorageAccountManagementPolicyAction -InputObject $action -BlobVersionAction TierToCool -daysAfterCreationGreaterThan 90 +PS C:\> $action + +BaseBlob.TierToCool.DaysAfterModificationGreaterThan : +BaseBlob.TierToArchive.DaysAfterModificationGreaterThan : +BaseBlob.Delete.DaysAfterModificationGreaterThan : +Snapshot.TierToCool.DaysAfterCreationGreaterThan : 60 +Snapshot.TierToArchive.DaysAfterCreationGreaterThan : 50 +Snapshot.Delete.DaysAfterCreationGreaterThan : 40 +Version.TierToCool.DaysAfterCreationGreaterThan : 90 +Version.TierToArchive.DaysAfterCreationGreaterThan : 80 +Version.Delete.DaysAfterCreationGreaterThan : 70 + +PS C:\>$filter = New-AzStorageAccountManagementPolicyFilter +PS C:\>$rule = New-AzStorageAccountManagementPolicyRule -Name Test -Action $action -Filter $filter +PS C:\>$policy = Set-AzStorageAccountManagementPolicy -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Rule $rule +``` + +The first command create a ManagementPolicy Action Group object, the following 5 commands add 5 actions on snapshot and blob version to the object. Then add it to a management policy rule and set to a Storage account. + ## PARAMETERS ### -BaseBlobAction diff --git a/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md b/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md index 8627aa6ee71a..0a2c35ffb0fe 100644 --- a/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md +++ b/src/Storage/Storage.Management/help/Add-AzStorageAccountNetworkRule.md @@ -94,7 +94,6 @@ PS C:\>Add-AzStorageAccountNetworkRule -ResourceGroupName "myResourceGroup" -Nam 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" @@ -220,7 +219,7 @@ Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` diff --git a/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md index d099d6e968e6..69a040588856 100644 --- a/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md +++ b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md @@ -39,9 +39,15 @@ The **Get-AzStorageFileServiceProperty** cmdlet gets the service properties for ```powershell PS C:\> Get-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -StorageAccountName ResourceGroupName ShareDeleteRetentionPolicy.Enabled ShareDeleteRetentionPolicy.Days ------------------- ----------------- ---------------------------------- ------------------------------- -mystorageaccount myresourcegroup True 5 +StorageAccountName : mystorageaccount +ResourceGroupName : myresourcegroup +ShareDeleteRetentionPolicy.Enabled : True +ShareDeleteRetentionPolicy.Days : 3 +ProtocolSettings.Smb.Multichannel.Enabled : True +ProtocolSettings.Smb.Versions : {SMB2.1, SMB3.0, SMB3.1.1} +ProtocolSettings.Smb.AuthenticationMethods : {Kerberos, NTLMv2} +ProtocolSettings.Smb.KerberosTicketEncryption : {RC4-HMAC, AES-256} +ProtocolSettings.Smb.ChannelEncryption : {AES-128-CCM, AES-128-GCM, AES-256-GCM} ``` This command gets the File services property of a specified Storage Account. diff --git a/src/Storage/Storage.Management/help/New-AzStorageAccount.md b/src/Storage/Storage.Management/help/New-AzStorageAccount.md index 13b8fed9e9fe..4950f7a5dee1 100644 --- a/src/Storage/Storage.Management/help/New-AzStorageAccount.md +++ b/src/Storage/Storage.Management/help/New-AzStorageAccount.md @@ -20,7 +20,8 @@ New-AzStorageAccount [-ResourceGroupName] [-Name] [-SkuName] < [-Tag ] [-EnableHttpsTrafficOnly ] [-AssignIdentity] [-NetworkRuleSet ] [-EnableHierarchicalNamespace ] [-EnableAzureActiveDirectoryDomainServicesForFile ] [-EnableLargeFileShare] [-PublishMicrosoftEndpoint ] [-PublishInternetEndpoint ] [-AsJob] - [-EncryptionKeyTypeForTable ] [-EncryptionKeyTypeForQueue ] + [-EncryptionKeyTypeForTable ] [-EncryptionKeyTypeForQueue ] [-RequireInfrastructureEncryption] + [-AllowBlobPublicAccess ] [-MinimumTlsVersion ] [-AllowSharedKeyAccess ] [-DefaultProfile ] [-RoutingChoice ] [] ``` @@ -34,9 +35,9 @@ New-AzStorageAccount [-ResourceGroupName] [-Name] [-SkuName] < [-ActiveDirectoryDomainName ] [-ActiveDirectoryNetBiosDomainName ] [-ActiveDirectoryForestName ] [-ActiveDirectoryDomainGuid ] [-ActiveDirectoryDomainSid ] [-ActiveDirectoryAzureStorageSid ] [-AsJob] - [-EncryptionKeyTypeForTable ] [-EncryptionKeyTypeForQueue ] + [-EncryptionKeyTypeForTable ] [-EncryptionKeyTypeForQueue ] [-RequireInfrastructureEncryption] + [-AllowBlobPublicAccess ] [-MinimumTlsVersion ] [-AllowSharedKeyAccess ] [-DefaultProfile ] [-RoutingChoice ] [] - [-AllowSharedKeyAccess ] [-DefaultProfile ] [] ``` ## DESCRIPTION @@ -129,18 +130,21 @@ True This command creates a Storage account with Queue and Table Service use account-scoped encryption key and Require Infrastructure Encryption, so Queue and Table will use same encryption key with Blob and File service, and the service will apply a secondary layer of encryption with platform managed keys for data at rest. Then get the Storage account properties, and view the encryption keytype of Queue and Table Service, and RequireInfrastructureEncryption value. -### Example 9: Create account MinimumTlsVersion and AllowBlobPublicAccess +### Example 9: Create account MinimumTlsVersion and AllowBlobPublicAccess, and disable SharedKey Access ``` -PS C:\> $account = New-AzStorageAccount -ResourceGroupName "MyResourceGroup" -AccountName "mystorageaccount" -Location "eastus2euap" -SkuName "Standard_LRS" -Kind StorageV2 -MinimumTlsVersion TLS1_1 -AllowBlobPublicAccess $false +PS C:\> $account = New-AzStorageAccount -ResourceGroupName "MyResourceGroup" -AccountName "mystorageaccount" -Location "eastus2euap" -SkuName "Standard_LRS" -Kind StorageV2 -MinimumTlsVersion TLS1_1 -AllowBlobPublicAccess $false -AllowSharedKeyAccess $false PS C:\> $account.MinimumTlsVersion TLS1_1 PS C:\> $account.AllowBlobPublicAccess False + +PS C:\> $a.AllowSharedKeyAccess +False ``` -The command create account with MinimumTlsVersion and AllowBlobPublicAccess, and then show the the 2 properties of the created account +The command create account with MinimumTlsVersion, AllowBlobPublicAccess, and disable SharedKey access to the account, and then show the the 3 properties of the created account ### Example 10: Create a Storage account with RoutingPreference setting ```powershell @@ -449,21 +453,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -EnableNfsV3 -Enable NFS 3.0 protocol support if sets to true - -```yaml -Type: System.Boolean -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -EncryptionKeyTypeForQueue Set the Encryption KeyType for Queue. The default value is Service. -Account: Queue will be encrypted with account-scoped encryption key. @@ -500,21 +489,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IsSftpEnabled -Enables Secure File Transfer Protocol, if set to true - -```yaml -Type: System.Boolean -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -Kind Specifies the kind of Storage account that this cmdlet creates. The acceptable values for this parameter are: @@ -629,6 +603,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequireInfrastructureEncryption +The service will apply a secondary layer of encryption with platform managed keys for data at rest. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName Specifies the name of the resource group in which to add the Storage account. diff --git a/src/Storage/Storage.Management/help/New-AzStorageAccountManagementPolicyFilter.md b/src/Storage/Storage.Management/help/New-AzStorageAccountManagementPolicyFilter.md index c095fadded03..23cb6ccda129 100644 --- a/src/Storage/Storage.Management/help/New-AzStorageAccountManagementPolicyFilter.md +++ b/src/Storage/Storage.Management/help/New-AzStorageAccountManagementPolicyFilter.md @@ -24,12 +24,12 @@ The **New-AzStorageAccountManagementPolicyFilter** cmdlet creates a ManagementPo ### Example 1: Creates a ManagementPolicy rule filter object, then add it to a management policy rule and set to a Storage account ``` -PS C:\>$filter = New-AzStorageAccountManagementPolicyFilter -PrefixMatch blobprefix1,blobprefix2 +PS C:\>$filter = New-AzStorageAccountManagementPolicyFilter -PrefixMatch blobprefix1,blobprefix2 -BlobType appendBlob,blockBlob PS C:\>$filter PrefixMatch BlobTypes ----------- --------- -{blobprefix1, blobprefix2} {blockBlob} +{blobprefix1, blobprefix2} {appendBlob, blockBlob} PS C:\>$action = Add-AzStorageAccountManagementPolicyAction -BaseBlobAction Delete -daysAfterModificationGreaterThan 100 PS C:\>$rule = New-AzStorageAccountManagementPolicyRule -Name Test -Action $action -Filter $filter diff --git a/src/Storage/Storage.Management/help/New-AzStorageEncryptionScope.md b/src/Storage/Storage.Management/help/New-AzStorageEncryptionScope.md index 40de6023be80..e9536df5dc40 100644 --- a/src/Storage/Storage.Management/help/New-AzStorageEncryptionScope.md +++ b/src/Storage/Storage.Management/help/New-AzStorageEncryptionScope.md @@ -15,28 +15,29 @@ Creates an encryption scope for a Storage account. ### AccountName (Default) ``` New-AzStorageEncryptionScope [-ResourceGroupName] [-StorageAccountName] - -EncryptionScopeName [-StorageEncryption] [-DefaultProfile ] [-WhatIf] - [-Confirm] [] + -EncryptionScopeName [-StorageEncryption] [-RequireInfrastructureEncryption] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### AccountNameKeyVault ``` New-AzStorageEncryptionScope [-ResourceGroupName] [-StorageAccountName] - -EncryptionScopeName [-KeyvaultEncryption] -KeyUri + -EncryptionScopeName [-KeyvaultEncryption] -KeyUri [-RequireInfrastructureEncryption] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ### AccountObject ``` New-AzStorageEncryptionScope -StorageAccount -EncryptionScopeName - [-StorageEncryption] [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-StorageEncryption] [-RequireInfrastructureEncryption] [-DefaultProfile ] [-WhatIf] + [-Confirm] [] ``` ### AccountObjectKeyVault ``` New-AzStorageEncryptionScope -StorageAccount -EncryptionScopeName - [-KeyvaultEncryption] -KeyUri [-DefaultProfile ] [-WhatIf] [-Confirm] - [] + [-KeyvaultEncryption] -KeyUri [-RequireInfrastructureEncryption] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` ## DESCRIPTION @@ -50,25 +51,27 @@ PS C:\> New-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -Accou ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- testscope Enabled Microsoft.Storage ``` This command creates an encryption scope with Storage Encryption. -### Example 2: Create an encryption scope with Keyvault Encryption +### Example 2: Create an encryption scope with Keyvault Encryption, and RequireInfrastructureEncryption ``` -PS C:\> New-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -EncryptionScopeName testscope -KeyvaultEncryption -KeyUri "https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57" +PS C:\> New-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" ` + -EncryptionScopeName testscope -KeyvaultEncryption -KeyUri "https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57" ` + -RequireInfrastructureEncryption ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- -testscope Enabled Microsoft.Keyvault https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57 +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- +testscope Enabled Microsoft.Keyvault https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57 True ``` -This command creates an encryption scope with Keyvault Encryption. +This command creates an encryption scope with Keyvault Encryption and RequireInfrastructureEncryption. The Storage account Identity need have get,wrapkey,unwrapkey permissions to the keyvault key. ## PARAMETERS @@ -133,6 +136,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -RequireInfrastructureEncryption +The encryption scope will apply a secondary layer of encryption with platform managed keys for data at rest. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName Resource Group Name. diff --git a/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md b/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md index 230a5694ec6f..6488293f69df 100644 --- a/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md +++ b/src/Storage/Storage.Management/help/Remove-AzStorageAccountNetworkRule.md @@ -94,12 +94,11 @@ 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" +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 @@ -218,7 +217,7 @@ Aliases: Required: True Position: Named Default value: None -Accept pipeline input: False +Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` diff --git a/src/Storage/Storage.Management/help/Set-AzStorageAccount.md b/src/Storage/Storage.Management/help/Set-AzStorageAccount.md index c64a7a74738e..f2ecf3477361 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageAccount.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageAccount.md @@ -20,9 +20,9 @@ Set-AzStorageAccount [-ResourceGroupName] [-Name] [-Force] [-S [-EnableHttpsTrafficOnly ] [-StorageEncryption] [-AssignIdentity] [-NetworkRuleSet ] [-UpgradeToStorageV2] [-EnableAzureActiveDirectoryDomainServicesForFile ] [-EnableLargeFileShare] - [-PublishMicrosoftEndpoint ] [-PublishInternetEndpoint ] [-AsJob] + [-PublishMicrosoftEndpoint ] [-PublishInternetEndpoint ] [-AllowBlobPublicAccess ] + [-MinimumTlsVersion ] [-AllowSharedKeyAccess ] [-AsJob] [-DefaultProfile ] [-RoutingChoice ] [-WhatIf] [-Confirm] [] - [] ``` ### KeyvaultEncryption @@ -32,9 +32,9 @@ Set-AzStorageAccount [-ResourceGroupName] [-Name] [-Force] [-S [-EnableHttpsTrafficOnly ] [-KeyvaultEncryption] -KeyName [-KeyVersion ] -KeyVaultUri [-AssignIdentity] [-NetworkRuleSet ] [-UpgradeToStorageV2] [-EnableAzureActiveDirectoryDomainServicesForFile ] [-EnableLargeFileShare] - [-PublishMicrosoftEndpoint ] [-PublishInternetEndpoint ] [-AsJob] + [-PublishMicrosoftEndpoint ] [-PublishInternetEndpoint ] [-AllowBlobPublicAccess ] + [-MinimumTlsVersion ] [-AllowSharedKeyAccess ] [-AsJob] [-DefaultProfile ] [-RoutingChoice ] [-WhatIf] [-Confirm] [] - [] ``` ### ActiveDirectoryDomainServicesForFile @@ -47,8 +47,8 @@ Set-AzStorageAccount [-ResourceGroupName] [-Name] [-Force] [-S [-ActiveDirectoryDomainName ] [-ActiveDirectoryNetBiosDomainName ] [-ActiveDirectoryForestName ] [-ActiveDirectoryDomainGuid ] [-ActiveDirectoryDomainSid ] [-ActiveDirectoryAzureStorageSid ] + [-AllowBlobPublicAccess ] [-MinimumTlsVersion ] [-AllowSharedKeyAccess ] [-AsJob] [-DefaultProfile ] [-RoutingChoice ] [-WhatIf] [-Confirm] [] - [] ``` ## DESCRIPTION @@ -168,18 +168,21 @@ AzureStorageSid : S-1-5-21-1234567890-1234567890-1234567890-1234 The command updates a Storage account by enable Azure Files Active Directory Domain Service Authentication, and then shows the File Identity Based authentication setting -### Example 12: Set MinimumTlsVersion and AllowBlobPublicAccess +### Example 12: Set MinimumTlsVersion, AllowBlobPublicAccess and AllowSharedKeyAccess ``` -PS C:\> $account = Set-AzStorageAccount -ResourceGroupName "MyResourceGroup" -AccountName "mystorageaccount" -MinimumTlsVersion TLS1_1 -AllowBlobPublicAccess $false +PS C:\> $account = Set-AzStorageAccount -ResourceGroupName "MyResourceGroup" -AccountName "mystorageaccount" -MinimumTlsVersion TLS1_1 -AllowBlobPublicAccess $false -AllowSharedKeyAccess $true PS C:\> $account.MinimumTlsVersion TLS1_1 PS C:\> $account.AllowBlobPublicAccess False + +PS C:\> $a.AllowSharedKeyAccess +True ``` -The command sets MinimumTlsVersion and AllowBlobPublicAccess, and then show the the 2 properties of the account +The command sets MinimumTlsVersion, AllowBlobPublicAccess and AllowSharedKeyAccess, and then show the the 3 properties of the account ### Example 13: Update a Storage account with RoutingPreference setting ```powershell @@ -487,21 +490,6 @@ Accept pipeline input: False Accept wildcard characters: False ``` -### -IsSftpEnabled -Enables Secure File Transfer Protocol, if set to true - -```yaml -Type: System.Boolean -Parameter Sets: (All) -Aliases: - -Required: False -Position: Named -Default value: None -Accept pipeline input: False -Accept wildcard characters: False -``` - ### -KeyName If using -KeyvaultEncryption to enable encryption with Key Vault, specify the Keyname property with this option. diff --git a/src/Storage/Storage.Management/help/Set-AzStorageAccountManagementPolicy.md b/src/Storage/Storage.Management/help/Set-AzStorageAccountManagementPolicy.md index b62bcfcdc273..f537753cadb0 100644 --- a/src/Storage/Storage.Management/help/Set-AzStorageAccountManagementPolicy.md +++ b/src/Storage/Storage.Management/help/Set-AzStorageAccountManagementPolicy.md @@ -64,8 +64,9 @@ PS C:\>$action1 = Add-AzStorageAccountManagementPolicyAction -InputObject $actio PS C:\>$filter1 = New-AzStorageAccountManagementPolicyFilter -PrefixMatch ab,cd PS C:\>$rule1 = New-AzStorageAccountManagementPolicyRule -Name Test -Action $action1 -Filter $filter1 -PS C:\>$action2 = Add-AzStorageAccountManagementPolicyAction -BaseBlobAction Delete -daysAfterModificationGreaterThan 100 -PS C:\>$filter2 = New-AzStorageAccountManagementPolicyFilter +PS C:\>$action2 = Add-AzStorageAccountManagementPolicyAction -SnapshotAction Delete -daysAfterCreationGreaterThan 100 +PS C:\>$action2 = Add-AzStorageAccountManagementPolicyAction -InputObject $action2 -BlobVersionAction Delete -daysAfterCreationGreaterThan 100 +PS C:\>$filter2 = New-AzStorageAccountManagementPolicyFilter -BlobType appendBlob,blockBlob PS C:\>$rule2 = New-AzStorageAccountManagementPolicyRule -Name Test2 -Action $action2 -Filter $filter2 PS C:\>Set-AzStorageAccountManagementPolicy -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Rule $rule1,$rule2 @@ -75,7 +76,7 @@ ResourceGroupName : myresourcegroup StorageAccountName : mystorageaccount Id : /subscriptions/{subscription-id}/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount/managementPolicies/default Type : Microsoft.Storage/storageAccounts/managementPolicies -LastModifiedTime : 3/12/2019 10:29:29 AM +LastModifiedTime : 2/19/2021 10:13:00 AM Rules : [ { "Enabled": true, @@ -96,13 +97,16 @@ Rules : [ "Snapshot": { "Delete": { "DaysAfterCreationGreaterThan": 100 - } - } + }, + "TierToCool": null, + "TierToArchive": null + }, + "Version": null }, "Filters": { "PrefixMatch": [ - "prefix1", - "prefix2" + "ab", + "cd" ], "BlobTypes": [ "blockBlob" @@ -115,18 +119,26 @@ Rules : [ "Name": "Test2", "Definition": { "Actions": { - "BaseBlob": { - "TierToCool": null, - "TierToArchive": null, + "BaseBlob": null, + "Snapshot": { "Delete": { - "DaysAfterModificationGreaterThan": 100 - } + "DaysAfterCreationGreaterThan": 100 + }, + "TierToCool": null, + "TierToArchive": null }, - "Snapshot": null + "Version": { + "Delete": { + "DaysAfterCreationGreaterThan": 100 + }, + "TierToCool": null, + "TierToArchive": null + } }, "Filters": { "PrefixMatch": null, "BlobTypes": [ + "appendBlob", "blockBlob" ] } @@ -152,6 +164,13 @@ PS C:\>Set-AzStorageAccountManagementPolicy -ResourceGroupName "myresourcegroup" }); Snapshot=(@{ Delete=@{DaysAfterCreationGreaterThan=100}; + TierToArchive=@{DaysAfterCreationGreaterThan=50}; + TierToCool=@{DaysAfterCreationGreaterThan=60}; + }); + Version=(@{ + Delete=@{DaysAfterCreationGreaterThan=100}; + TierToArchive=@{DaysAfterCreationGreaterThan=50}; + TierToCool=@{DaysAfterCreationGreaterThan=60}; }); }); Filters=(@{ @@ -165,12 +184,12 @@ PS C:\>Set-AzStorageAccountManagementPolicy -ResourceGroupName "myresourcegroup" Name="Test2"; Definition=(@{ Actions=(@{ - BaseBlob=(@{ - TierToCool=@{DaysAfterModificationGreaterThan=80}; + Version=(@{ + Delete=@{DaysAfterCreationGreaterThan=100}; }); }); Filters=(@{ - BlobTypes=@("blockBlob"); + BlobTypes=@("blockBlob","appendBlob"); }) }) }) @@ -181,7 +200,7 @@ ResourceGroupName : myresourcegroup StorageAccountName : mystorageaccount Id : /subscriptions/{subscription-id}/resourceGroups/myresourcegroup/providers/Microsoft.Storage/storageAccounts/mystorageaccount/managementPolicies/default Type : Microsoft.Storage/storageAccounts/managementPolicies -LastModifiedTime : 3/12/2019 10:24:55 AM +LastModifiedTime : 2/19/2021 10:16:32 AM Rules : [ { "Enabled": true, @@ -202,8 +221,25 @@ Rules : [ "Snapshot": { "Delete": { "DaysAfterCreationGreaterThan": 100 - } - } + }, + "TierToCool": { + "DaysAfterCreationGreaterThan": 60 + }, + "TierToArchive": { + "DaysAfterCreationGreaterThan": 50 + } + }, + "Version": { + "Delete": { + "DaysAfterCreationGreaterThan": 100 + }, + "TierToCool": { + "DaysAfterCreationGreaterThan": 60 + }, + "TierToArchive": { + "DaysAfterCreationGreaterThan": 50 + } + } }, "Filters": { "PrefixMatch": [ @@ -221,19 +257,21 @@ Rules : [ "Name": "Test2", "Definition": { "Actions": { - "BaseBlob": { - "TierToCool": { - "DaysAfterModificationGreaterThan": 80 - }, - "TierToArchive": null, - "Delete": null - }, - "Snapshot": null + "BaseBlob": null, + "Snapshot": null, + "Version": { + "Delete": { + "DaysAfterCreationGreaterThan": 100 + }, + "TierToCool": null, + "TierToArchive": null + } }, "Filters": { "PrefixMatch": null, "BlobTypes": [ - "blockBlob" + "blockBlob", + "appendBlob" ] } } diff --git a/src/Storage/Storage.Management/help/Update-AzStorageEncryptionScope.md b/src/Storage/Storage.Management/help/Update-AzStorageEncryptionScope.md index 8c18e11b083e..20d2aaf80416 100644 --- a/src/Storage/Storage.Management/help/Update-AzStorageEncryptionScope.md +++ b/src/Storage/Storage.Management/help/Update-AzStorageEncryptionScope.md @@ -63,8 +63,8 @@ PS C:\> Update-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -Ac ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- testscope Disabled Microsoft.Storage ``` @@ -76,8 +76,8 @@ PS C:\> Update-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -Ac ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- testscope Enabled Microsoft.Storage ``` @@ -89,8 +89,8 @@ PS C:\> Update-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -Ac ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- testscope Enabled Microsoft.Storage ``` @@ -102,9 +102,9 @@ PS C:\> Update-AzStorageEncryptionScope -ResourceGroupName "myresourcegroup" -Ac ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name State Source KeyVaultKeyUri ----- ----- ------ -------------- -testscope Enabled Microsoft.Keyvault https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57 +Name State Source KeyVaultKeyUri RequireInfrastructureEncryption +---- ----- ------ -------------- ------------------------------- +testscope Enabled Microsoft.Keyvault https://keyvalutname.vault.azure.net:443/keys/keyname/34a0ba563b4243d9a0ef2b1d3c0c7d57 ``` This command updtaes an encryption scope to use Keyvault Encryption. diff --git a/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md index 56ec828e0100..14c39b967b5a 100644 --- a/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md +++ b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md @@ -15,27 +15,27 @@ Modifies the service properties for the Azure Storage File service. ### AccountName (Default) ``` Update-AzStorageFileServiceProperty [-ResourceGroupName] [-StorageAccountName] - [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] [-SmbProtocolVersion ] - [-SmbAuthenticationMethod ] [-SmbChannelEncryption ] - [-SmbKerberosTicketEncryption ] [-EnableSmbMultichannel ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] [-EnableSmbMultichannel ] + [-SmbProtocolVersion ] [-SmbAuthenticationMethod ] [-SmbChannelEncryption ] + [-SmbKerberosTicketEncryption ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### AccountObject ``` Update-AzStorageFileServiceProperty -StorageAccount - [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] [-SmbProtocolVersion ] - [-SmbAuthenticationMethod ] [-SmbChannelEncryption ] - [-SmbKerberosTicketEncryption ] [-EnableSmbMultichannel ] - [-DefaultProfile ] [-WhatIf] [-Confirm] [] + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] [-EnableSmbMultichannel ] + [-SmbProtocolVersion ] [-SmbAuthenticationMethod ] [-SmbChannelEncryption ] + [-SmbKerberosTicketEncryption ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] ``` ### FileServicePropertiesResourceId ``` Update-AzStorageFileServiceProperty [-ResourceId] [-EnableShareDeleteRetentionPolicy ] - [-ShareRetentionDays ] [-SmbProtocolVersion ] [-SmbAuthenticationMethod ] - [-SmbChannelEncryption ] [-SmbKerberosTicketEncryption ] - [-EnableSmbMultichannel ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [-ShareRetentionDays ] [-EnableSmbMultichannel ] [-SmbProtocolVersion ] + [-SmbAuthenticationMethod ] [-SmbChannelEncryption ] + [-SmbKerberosTicketEncryption ] [-DefaultProfile ] [-WhatIf] [-Confirm] [] ``` @@ -57,18 +57,48 @@ ProtocolSettings.Smb.Multichannel.Enabled : False This command enables File share softdelete delete with retention days as 5 -### Example 2: Enable Smb Multichannel +### Example 2: Enable Smb Multichannel, and update secure smb settings ```powershell -PS C:\> Update-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -EnableSmbMultichannel $true +PS C:\> Update-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" ` + -EnableSmbMultichannel $true ` + -SMBProtocolVersion SMB2.1,SMB3.0,SMB3.1.1 ` + -SMBAuthenticationMethod Kerberos,NTLMv2 ` + -SMBKerberosTicketEncryption RC4-HMAC,AES-256 ` + -SMBChannelEncryption AES-128-CCM,AES-128-GCM,AES-256-GCM + +StorageAccountName : mystorageaccount +ResourceGroupName : myresourcegroup +ShareDeleteRetentionPolicy.Enabled : True +ShareDeleteRetentionPolicy.Days : 5 +ProtocolSettings.Smb.Multichannel.Enabled : True +ProtocolSettings.Smb.Versions : {SMB2.1, SMB3.0, SMB3.1.1} +ProtocolSettings.Smb.AuthenticationMethods : {Kerberos, NTLMv2} +ProtocolSettings.Smb.KerberosTicketEncryption : {RC4-HMAC, AES-256} +ProtocolSettings.Smb.ChannelEncryption : {AES-128-CCM, AES-128-GCM, AES-256-GCM} +``` -StorageAccountName : mystorageaccount -ResourceGroupName : myresourcegroup -ShareDeleteRetentionPolicy.Enabled : True -ShareDeleteRetentionPolicy.Days : 5 -ProtocolSettings.Smb.Multichannel.Enabled : True +This command enables Smb Multichannel, and update secure smb settings, Smb Multichannel only supported on Premium FileStorage account. + +### Example 3: Clear secure smb settings +```powershell +PS C:\> Update-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" ` + -SMBProtocolVersion @() ` + -SMBAuthenticationMethod @() ` + -SMBKerberosTicketEncryption @() ` + -SMBChannelEncryption @() + +StorageAccountName : mystorageaccount +ResourceGroupName : myresourcegroup +ShareDeleteRetentionPolicy.Enabled : True +ShareDeleteRetentionPolicy.Days : 5 +ProtocolSettings.Smb.Multichannel.Enabled : +ProtocolSettings.Smb.Versions : +ProtocolSettings.Smb.AuthenticationMethods : +ProtocolSettings.Smb.KerberosTicketEncryption : +ProtocolSettings.Smb.ChannelEncryption : ``` -This command enables Smb Multichannel, only supported on Premium FileStorage account. +This command clears secure smb settings. ## PARAMETERS @@ -102,6 +132,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -EnableSmbMultichannel +Enable Multichannel by set to $true, disable Multichannel by set to $false. Applies to Premium FileStorage only. + +```yaml +Type: System.Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -ResourceGroupName Resource Group Name.