From 4d8a031c1ded2ba98fa97cb0bcaba7ecdac07f21 Mon Sep 17 00:00:00 2001 From: Wei Wei Date: Thu, 24 Sep 2020 17:39:17 +0800 Subject: [PATCH 1/2] [Storage] Support share soft delete --- .../ScenarioTests/StorageFileTests.cs | 9 +- .../ScenarioTests/StorageFileTests.ps1 | 101 + .../TestShareSoftDeletee.json | 1797 +++++++++++++++++ .../Storage.Management/Az.Storage.psd1 | 2 + src/Storage/Storage.Management/ChangeLog.md | 7 + .../File/GetAzStorageFileServiceProperty.cs | 106 + .../File/GetAzureStorageShare.cs | 17 +- .../File/RestoreAzureStorageShare.cs | 143 ++ .../File/StorageFileBaseCmdlet.cs | 1 + .../UpdateAzAzStorageFileServiceProperty.cs | 173 ++ .../Storage.Management/Models/PSContainer.cs | 4 +- .../Models/PSFileServiceProperties.cs | 64 + .../Storage.Management/help/Az.Storage.md | 9 + .../help/Get-AzRmStorageShare.md | 51 +- .../help/Get-AzStorageFileServiceProperty.md | 141 ++ .../help/New-AzRmStorageShare.md | 8 +- .../help/Restore-AzRmStorageShare.md | 217 ++ .../help/Update-AzRmStorageShare.md | 8 +- .../Update-AzStorageFileServiceProperty.md | 206 ++ .../Az.Storage/BreakingChangeIssues.csv | 2 +- 20 files changed, 3041 insertions(+), 25 deletions(-) create mode 100644 src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json create mode 100644 src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs create mode 100644 src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs create mode 100644 src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs create mode 100644 src/Storage/Storage.Management/Models/PSFileServiceProperties.cs create mode 100644 src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md create mode 100644 src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md create mode 100644 src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs index b6e559dfef6d..366536e715c8 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.cs @@ -43,6 +43,13 @@ public void TestStorageFileShare() public void TestStorageFileShareGetUsage() { TestController.NewInstance.RunPsTest(_logger, "Test-StorageFileShareGetUsage"); - } + } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void TestShareSoftDeletee() + { + TestController.NewInstance.RunPsTest(_logger, "Test-ShareSoftDelete"); + } } } diff --git a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 index d2cc85e897ec..4893618de5a5 100644 --- a/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 +++ b/src/Storage/Storage.Management.Test/ScenarioTests/StorageFileTests.ps1 @@ -140,6 +140,107 @@ function Test-StorageFileShareGetUsage Clean-ResourceGroup $rgname } } + +<# +.SYNOPSIS +Test Storage File Share Soft Delete +.DESCRIPTION +SmokeTest +#> +function Test-ShareSoftDelete +{ + # Setup + $rgname = Get-StorageManagementTestResourceName; + + try + { + # Test + $stoname = 'sto' + $rgname; + $stotype = 'Standard_LRS'; + $loc = Get-ProviderLocation ResourceManagement; + $kind = 'StorageV2' + $shareName1 = "share1"+ $rgname + $shareName2 = "share2"+ $rgname + + Write-Verbose "RGName: $rgname | Loc: $loc" + New-AzResourceGroup -Name $rgname -Location $loc; + $loc = Get-ProviderLocation_Stage ResourceManagement; + New-AzStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype -Kind $kind + $stos = Get-AzStorageAccount -ResourceGroupName $rgname; + + # Enable Share Soft delete + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableShareDeleteRetentionPolicy $true -ShareRetentionDays 5 + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $true $servicePropertie.ShareDeleteRetentionPolicy.Enabled + Assert-AreEqual 5 $servicePropertie.ShareDeleteRetentionPolicy.Days + + #create Shares + New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 + Assert-AreEqual $rgname $share.ResourceGroupName + Assert-AreEqual $stoname $share.StorageAccountName + Assert-AreEqual $shareName1 $share.Name + New-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName2 + + #delete share + Remove-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -Force + + #list share check + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeDeleted + $deletedShareVersion = $share[0].Version + Assert-AreEqual 2 $share.Count + Assert-AreEqual $shareName1 $share[0].Name + Assert-AreEqual $null $share[0].ShareUsageBytes + Assert-AreEqual $true $share[0].Deleted + Assert-AreNotEqual $null $share[0].DeletedTime + Assert-AreNotEqual $null $share[0].Version + Assert-AreEqual $shareName2 $share[1].Name + Assert-AreEqual $null $share[1].Deleted + Assert-AreEqual $null $share[1].DeletedTime + Assert-AreEqual $null $share[1].Version + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual 1 $share.Count + Assert-AreEqual $shareName2 $share[0].Name + Assert-AreEqual $null $share[0].Deleted + Assert-AreEqual $null $share[0].DeletedTime + Assert-AreEqual $null $share[0].Version + + # restore share and check + if ($env:AZURE_TEST_MODE -eq "Record") + { + # sleep 1 miniute if record. Don't need sleep in replay + sleep 60 + } + Restore-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -Name $shareName1 -DeletedShareVersion $deletedShareVersion + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual 2 $share.Count + Assert-AreEqual $shareName1 $share[0].Name + Assert-AreEqual $null $share[0].Deleted + Assert-AreEqual $null $share[0].DeletedTime + Assert-AreEqual $null $share[0].Version + Assert-AreEqual $shareName2 $share[1].Name + Assert-AreEqual $null $share[1].Deleted + Assert-AreEqual $null $share[1].DeletedTime + Assert-AreEqual $null $share[1].Version + + $share = Get-AzRmStorageShare -ResourceGroupName $rgname -StorageAccountName $stoname -IncludeDeleted + Assert-AreEqual 2 $share.Count + + # Disable Share Soft delete + Update-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname -EnableShareDeleteRetentionPolicy $false + $servicePropertie = Get-AzStorageFileServiceProperty -ResourceGroupName $rgname -StorageAccountName $stoname + Assert-AreEqual $false $servicePropertie.ShareDeleteRetentionPolicy.Enabled + + Remove-AzStorageAccount -Force -ResourceGroupName $rgname -Name $stoname; + } + finally + { + # Cleanup + Clean-ResourceGroup $rgname + } +} diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json new file mode 100644 index 000000000000..fb73f2b75e09 --- /dev/null +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json @@ -0,0 +1,1797 @@ +{ + "Entries": [ + { + "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": [ + "187e7605-995d-4afe-90de-35dc3c104133" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "9143a26b-2fec-464a-8b86-e0b67eb89269" + ], + "x-ms-correlation-request-id": [ + "9143a26b-2fec-464a-8b86-e0b67eb89269" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T164958Z:9143a26b-2fec-464a-8b86-e0b67eb89269" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:49:58 GMT" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "12336" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage\",\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"authorizations\": [\r\n {\r\n \"applicationId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"roleDefinitionId\": \"070ab87f-0efc-4423-b18b-756f3bdb0236\"\r\n },\r\n {\r\n \"applicationId\": \"e406a681-f3d4-42a8-90b6-c2b029497af1\"\r\n }\r\n ],\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ],\r\n \"capabilities\": \"CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity\"\r\n },\r\n {\r\n \"resourceType\": \"operations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/asyncoperations\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listAccountSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/listServiceSas\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/blobServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/tableServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/queueServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/fileServices\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\",\r\n \"2016-01-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/usages\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/deleteVirtualNetworkOrSubnets\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-07-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"usages\",\r\n \"locations\": [],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-03-01-preview\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\",\r\n \"2016-05-01\",\r\n \"2016-01-01\",\r\n \"2015-06-15\",\r\n \"2015-05-01-preview\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"locations/checkNameAvailability\",\r\n \"locations\": [\r\n \"East US\",\r\n \"East US 2\",\r\n \"West US\",\r\n \"West Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"Central US\",\r\n \"North Europe\",\r\n \"Brazil South\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"Australia Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 (Stage)\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2019-06-01\",\r\n \"2019-04-01\",\r\n \"2018-11-01\",\r\n \"2018-07-01\",\r\n \"2018-02-01\",\r\n \"2017-10-01\",\r\n \"2017-06-01\",\r\n \"2016-12-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"storageAccounts/services/metricDefinitions\",\r\n \"locations\": [\r\n \"East US\",\r\n \"West US\",\r\n \"East US 2 (Stage)\",\r\n \"West Europe\",\r\n \"North Europe\",\r\n \"East Asia\",\r\n \"Southeast Asia\",\r\n \"Japan East\",\r\n \"Japan West\",\r\n \"North Central US\",\r\n \"South Central US\",\r\n \"East US 2\",\r\n \"Central US\",\r\n \"Australia East\",\r\n \"Australia Southeast\",\r\n \"Brazil South\",\r\n \"South India\",\r\n \"Central India\",\r\n \"West India\",\r\n \"Canada East\",\r\n \"Canada Central\",\r\n \"West US 2\",\r\n \"West Central US\",\r\n \"UK South\",\r\n \"UK West\",\r\n \"Korea Central\",\r\n \"Korea South\",\r\n \"France Central\",\r\n \"South Africa North\",\r\n \"UAE North\",\r\n \"Switzerland North\",\r\n \"Germany West Central\",\r\n \"Norway East\",\r\n \"East US 2 EUAP\",\r\n \"Central US EUAP\"\r\n ],\r\n \"apiVersions\": [\r\n \"2014-04-01\"\r\n ]\r\n }\r\n ],\r\n \"registrationState\": \"Registered\"\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3547?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8d39c7c3-abaa-4190-9c85-3c9c9ef1efc9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "29" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-request-id": [ + "228e2e95-b568-469d-8202-942616c8de95" + ], + "x-ms-correlation-request-id": [ + "228e2e95-b568-469d-8202-942616c8de95" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165001Z:228e2e95-b568-469d-8202-942616c8de95" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:01 GMT" + ], + "Content-Length": [ + "177" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547\",\r\n \"name\": \"pstestrg3547\",\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=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7b371bbf-6411-496f-9c2d-630c2e821099" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.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": [ + "ed353e6a-7046-4d54-9e82-8f08f3c959d8" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "f35a0b71-7db4-4a05-9f62-27a907f44663" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165002Z:f35a0b71-7db4-4a05-9f62-27a907f44663" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:02 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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2(stage)\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a1257bf6-9175-42c0-8ca8-8b12d6b49c0a" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.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/eastus2(stage)/asyncoperations/370edc75-f308-4c21-a4e9-2d97c0fe6218?monitor=true&api-version=2019-06-01" + ], + "Retry-After": [ + "17" + ], + "x-ms-request-id": [ + "370edc75-f308-4c21-a4e9-2d97c0fe6218" + ], + "Strict-Transport-Security": [ + "max-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": [ + "4187358e-6d0b-45d4-a3c5-e8b9f80fc591" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165008Z:4187358e-6d0b-45d4-a3c5-e8b9f80fc591" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:07 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/eastus2(stage)/asyncoperations/370edc75-f308-4c21-a4e9-2d97c0fe6218?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzM3MGVkYzc1LWYzMDgtNGMyMS1hNGU5LTJkOTdjMGZlNjIxOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8845e46f-59f0-4cea-a1cd-aa033fb2b774" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "14ad300c-fbd3-41ce-a23a-33ad92bdaaf0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165025Z:14ad300c-fbd3-41ce-a23a-33ad92bdaaf0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:25 GMT" + ], + "Content-Length": [ + "1271" + ], + "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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c635293e-200d-4658-b377-cf8111d76c51" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "b42f8c6a-f982-405e-894d-af8ac771843b" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "b2400e67-f80c-478b-a2d2-49667d9d3f81" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165025Z:b2400e67-f80c-478b-a2d2-49667d9d3f81" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:25 GMT" + ], + "Content-Length": [ + "1271" + ], + "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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "465d6ed6-ca29-43e0-b5d5-d53e6b5c7875" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cec4510c-f2ad-48ce-8624-7c8ccbde65e2" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "d51e7cf1-3766-4a8c-a139-7791cbc4af33" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165026Z:d51e7cf1-3766-4a8c-a139-7791cbc4af33" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:25 GMT" + ], + "Content-Length": [ + "1283" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\r\n \"statusOfPrimary\": \"available\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8304bb4f-9e3b-404b-9cb5-27901246ac99" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "113" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "2a2708ce-4a78-46c1-ab16-388ce401c0d5" + ], + "Strict-Transport-Security": [ + "max-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": [ + "4c3ab9f4-d8d4-43ae-bb4f-be7816770c13" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165026Z:4c3ab9f4-d8d4-43ae-bb4f-be7816770c13" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:26 GMT" + ], + "Content-Length": [ + "312" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4ad451c-ad18-4b3f-b38a-fa52d8e1616f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "96" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "14a70ddc-ff0a-476e-999b-6a6ae2a73d16" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1195" + ], + "x-ms-correlation-request-id": [ + "6589c647-80f2-4910-848f-45bc57704c3f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165133Z:6589c647-80f2-4910-848f-45bc57704c3f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:33 GMT" + ], + "Content-Length": [ + "304" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43101e12-b722-4d92-bb89-d26ec6405b17" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c890c712-2cb6-4bd4-a3f7-1711c97aadef" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "3535b96c-b59a-4267-a130-6d918e1f70c3" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165027Z:3535b96c-b59a-4267-a130-6d918e1f70c3" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:26 GMT" + ], + "Content-Length": [ + "384" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d2fa745b-6ab8-45b3-a598-17358a1408b0" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "e4e81a77-d051-441f-9074-289cb5843ebb" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "d4a11be4-368a-48a3-b7d2-4f1230666f6e" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165133Z:d4a11be4-368a-48a3-b7d2-4f1230666f6e" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:33 GMT" + ], + "Content-Length": [ + "385" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "662c13c0-3a33-429c-8199-407822e4ec5f" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7EDEFC0AE9B70\"" + ], + "x-ms-request-id": [ + "470e8d6b-d527-45e2-9223-1d4c5b451fb0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "e0e4e514-4acc-404b-9869-d709041f1385" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165028Z:e0e4e514-4acc-404b-9869-d709041f1385" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:27 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5fe70af8-bda6-4de8-abf8-56ebfc8c5345" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7EDEFC0AE9B70\"" + ], + "x-ms-request-id": [ + "cdc6b110-bc43-48a6-a257-829d77f76d0a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "fae4a1a3-6e22-4eaa-81a5-84182af5bffa" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165028Z:fae4a1a3-6e22-4eaa-81a5-84182af5bffa" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:28 GMT" + ], + "Content-Length": [ + "400" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "29dbc0cc-5c3b-43ab-8f48-c000d6c1f177" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7EDEFE68AB3F7\"" + ], + "x-ms-request-id": [ + "69ee1165-2bde-4f1d-8856-17d81bd7e46d" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-correlation-request-id": [ + "553a6cef-7a17-4021-885f-fa985db18b5b" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165132Z:553a6cef-7a17-4021-885f-fa985db18b5b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:31 GMT" + ], + "Content-Length": [ + "400" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUycHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "PUT", + "RequestBody": "{}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "728252d7-39c7-4ca3-8959-33c055643a76" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7EDEFC138F324\"" + ], + "x-ms-request-id": [ + "0ef1d3a9-582a-4cf1-af59-c8c34504e88f" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1196" + ], + "x-ms-correlation-request-id": [ + "d24873c7-bd70-4c49-ae07-aa950800ba4f" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165029Z:d24873c7-bd70-4c49-ae07-aa950800ba4f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:28 GMT" + ], + "Content-Length": [ + "286" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01&$expand=stats", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEmJGV4cGFuZD1zdGF0cw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "07066681-c2a6-4ea7-90ef-32e357a553e9" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "ETag": [ + "\"0x8D7EDEFC0AE9B70\"" + ], + "x-ms-request-id": [ + "280129c3-a6a6-4449-9e81-015884de4a51" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "33695b84-c4e0-474f-95e2-afcdcb2ec8e0" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165029Z:33695b84-c4e0-474f-95e2-afcdcb2ec8e0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:29 GMT" + ], + "Content-Length": [ + "420" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"shareUsageBytes\": 0,\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "8a336fc6-5fbc-46ca-a1ff-87de5e4c7d28" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "79ec5c4b-132d-49d0-a3b7-231a07997aa9" + ], + "Strict-Transport-Security": [ + "max-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": [ + "ab72989f-eb52-4dd5-be78-1a6cc58a7826" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165030Z:ab72989f-eb52-4dd5-be78-1a6cc58a7826" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50: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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e71336e9-7d46-4725-89eb-2de1420231d4" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "21bbf57b-e45e-4bbd-8edb-e2b78963a0b3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "c12d4e6f-de53-430c-aa79-f3ee5bdc30d4" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165030Z:c12d4e6f-de53-430c-aa79-f3ee5bdc30d4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:29 GMT" + ], + "Content-Length": [ + "1069" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547_01D61FD89E19387B\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"version\": \"01D61FD89E19387B\",\r\n \"deleted\": true,\r\n \"deletedTime\": \"Fri, 01 May 2020 16:50:29 GMT\",\r\n \"remainingRetentionDays\": 5,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "86a9f281-032c-4df0-8bc8-642dacc742a8" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "de8deaf1-1f55-4b18-9266-b585e4ce091c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-correlation-request-id": [ + "4ac3376f-4220-4aac-ba17-56fd4f8286bb" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165132Z:4ac3376f-4220-4aac-ba17-56fd4f8286bb" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:32 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5a7cf02d-60d0-4af8-9b92-bebd6c06e4ec" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3998b144-cc28-4015-9ac0-00a95f94ccf7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" + ], + "x-ms-correlation-request-id": [ + "61a6b999-f162-42b1-b89f-052388c91859" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165030Z:61a6b999-f162-42b1-b89f-052388c91859" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:50:30 GMT" + ], + "Content-Length": [ + "473" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "913bc44c-60a2-44b7-baaf-9639776d1147" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3e720f34-b1de-41b3-843c-75ca30a7a5ff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "ddb7066e-90d5-4f0a-8931-769acfcd0b07" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165132Z:ddb7066e-90d5-4f0a-8931-769acfcd0b07" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:32 GMT" + ], + "Content-Length": [ + "935" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547/restore?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"deletedShareName\": \"share1pstestrg3547\",\r\n \"deletedShareVersion\": \"01D61FD89E19387B\"\r\n}", + "RequestHeaders": { + "x-ms-client-request-id": [ + "802dd5f4-ed68-44d1-8bd1-c83ee764d9bd" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "94" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8d9ae7a7-3a6f-4059-9df9-13a4dc905c6f" + ], + "Strict-Transport-Security": [ + "max-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": [ + "f1fb299e-0fd9-4754-8de9-91ff1915fee5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165131Z:f1fb299e-0fd9-4754-8de9-91ff1915fee5" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:31 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "60fbdbdb-8ace-46bc-a45d-e4c30cebffe2" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3dea846c-0532-4191-b8cc-4f22518d242d" + ], + "Strict-Transport-Security": [ + "max-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": [ + "75d5fe89-9276-4ad6-b439-12fb8c14e6af" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165138Z:75d5fe89-9276-4ad6-b439-12fb8c14e6af" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:38 GMT" + ], + "Content-Type": [ + "text/plain; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3547?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "618df6cf-e0d8-4ed7-8308-13ff842b9c29" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.28207.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.18363.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" + ], + "x-ms-request-id": [ + "45a4e68c-a71c-418c-8ca4-c679d20629d5" + ], + "x-ms-correlation-request-id": [ + "45a4e68c-a71c-418c-8ca4-c679d20629d5" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165142Z:45a4e68c-a71c-418c-8ca4-c679d20629d5" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:42 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11990" + ], + "x-ms-request-id": [ + "89f0d667-6150-4c53-99e5-81cedd2fc9f2" + ], + "x-ms-correlation-request-id": [ + "89f0d667-6150-4c53-99e5-81cedd2fc9f2" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165158Z:89f0d667-6150-4c53-99e5-81cedd2fc9f2" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:51:57 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "Location": [ + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-request-id": [ + "43a536c5-e627-41ea-9cff-3f665b321265" + ], + "x-ms-correlation-request-id": [ + "43a536c5-e627-41ea-9cff-3f665b321265" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165213Z:43a536c5-e627-41ea-9cff-3f665b321265" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:52:13 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 202 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11988" + ], + "x-ms-request-id": [ + "342e4052-0b04-4636-8b3f-bcd19768b194" + ], + "x-ms-correlation-request-id": [ + "342e4052-0b04-4636-8b3f-bcd19768b194" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165229Z:342e4052-0b04-4636-8b3f-bcd19768b194" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:52:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "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.13" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11987" + ], + "x-ms-request-id": [ + "db4a9606-a9eb-4357-975e-432aa28afcba" + ], + "x-ms-correlation-request-id": [ + "db4a9606-a9eb-4357-975e-432aa28afcba" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200501T165229Z:db4a9606-a9eb-4357-975e-432aa28afcba" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Fri, 01 May 2020 16:52:28 GMT" + ], + "Expires": [ + "-1" + ], + "Content-Length": [ + "0" + ] + }, + "ResponseBody": "", + "StatusCode": 200 + } + ], + "Names": { + "Test-ShareSoftDelete": [ + "pstestrg3547" + ] + }, + "Variables": { + "SubscriptionId": "45b60d85-fd72-427a-a708-f994d26e593e" + } +} \ No newline at end of file diff --git a/src/Storage/Storage.Management/Az.Storage.psd1 b/src/Storage/Storage.Management/Az.Storage.psd1 index 52f12e4fa3b0..e2009ec2638e 100644 --- a/src/Storage/Storage.Management/Az.Storage.psd1 +++ b/src/Storage/Storage.Management/Az.Storage.psd1 @@ -161,6 +161,8 @@ CmdletsToExport = 'Get-AzStorageAccount', 'Get-AzStorageAccountKey', 'Get-AzStorageFileHandle', 'Close-AzStorageFileHandle', 'New-AzRmStorageShare', 'Remove-AzRmStorageShare', 'Get-AzRmStorageShare', 'Update-AzRmStorageShare', + 'Update-AzStorageFileServiceProperty', + 'Get-AzStorageFileServiceProperty', 'Restore-AzRmStorageShare', 'Get-AzDataLakeGen2ChildItem', 'Get-AzDataLakeGen2Item', 'New-AzDataLakeGen2Item', 'Move-AzDataLakeGen2Item', 'Remove-AzDataLakeGen2Item', 'Update-AzDataLakeGen2Item', diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 79f39c920fb0..04774ae34790 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,6 +18,13 @@ - Additional information about change #1 --> ## Upcoming Release +* Support enable/disable/get share soft delete properties on file Service of a Storage account + - `Update-AzStorageFileServiceProperty` + - `Get-AzStorageFileServiceProperty` +* Support list file shares include the deleted ones of a Storage account, and Get single file share usage + - `Get-AzRmStorageShare` +* Support restore a deleted file share + - `Restore-AzRmStorageShare` * Fixed help issue for New-AzStorageAccount parameter -Kind default value [#12189] * Fixed issue by add example to show how to set correct ContentType in blob upload [#12989] diff --git a/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs b/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs new file mode 100644 index 000000000000..a41ff1afba87 --- /dev/null +++ b/src/Storage/Storage.Management/File/GetAzStorageFileServiceProperty.cs @@ -0,0 +1,106 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Management.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Get", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageFileServiceProperty, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSFileServiceProperties))] + public class GetAzStorageFileServicePropertyCommand : StorageFileBaseCmdlet + { + + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "FileServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a File service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + FileServiceProperties serviceProperties = this.StorageClient.FileServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + + WriteObject(new PSFileServiceProperties(serviceProperties)); + } + } +} diff --git a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs index 1a02d6bae25c..5d01111da04a 100644 --- a/src/Storage/Storage.Management/File/GetAzureStorageShare.cs +++ b/src/Storage/Storage.Management/File/GetAzureStorageShare.cs @@ -110,7 +110,6 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet ParameterSetName = ShareResourceIdParameterSet)] public string Name { get; set; } - [Parameter(HelpMessage = "Specify this parameter to get the Share Usage in Bytes.", Mandatory = false, ParameterSetName = AccountObjectSingleParameterSet)] @@ -121,6 +120,14 @@ public class GetAzureStorageShareCommand : StorageFileBaseCmdlet Mandatory = false, ParameterSetName = ShareResourceIdParameterSet)] public SwitchParameter GetShareUsage { get; set; } + + [Parameter(Mandatory = false, + HelpMessage = "Include deleted shares, by default list shares won't include deleted shares", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = false, + HelpMessage = "Include deleted shares, by default list shares won't include deleted shares", + ParameterSetName = AccountObjectParameterSet)] + public SwitchParameter IncludeDeleted { get; set; } public override void ExecuteCmdlet() { @@ -164,9 +171,15 @@ public override void ExecuteCmdlet() } else { + ListSharesExpand? listSharesExpand = null; + if (this.IncludeDeleted.IsPresent) + { + listSharesExpand = ListSharesExpand.Deleted; + } IPage shares = this.StorageClient.FileShares.List( this.ResourceGroupName, - this.StorageAccountName); + this.StorageAccountName, + expand: listSharesExpand); WriteShareList(shares); while (shares.NextPageLink != null) { diff --git a/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs b/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs new file mode 100644 index 000000000000..a0f9ce06316d --- /dev/null +++ b/src/Storage/Storage.Management/File/RestoreAzureStorageShare.cs @@ -0,0 +1,143 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Commands.Management.Storage.Models; +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage; +using Microsoft.Azure.Management.Storage.Models; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Management.Automation; + +namespace Microsoft.Azure.Commands.Management.Storage +{ + [Cmdlet("Restore", ResourceManager.Common.AzureRMConstants.AzureRMStoragePrefix + StorageShareNounStr, DefaultParameterSetName = AccountNameParameterSet, SupportsShouldProcess = true), OutputType(typeof(PSShare))] + public class RestoreAzureStorageShareCommand : StorageFileBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// ShareObject Parameter Set + /// + private const string ShareObjectParameterSet = "ShareObject"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [Alias(AccountNameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + //[Parameter(Mandatory = false, + // HelpMessage = "Target share Name, which will be restored to.")] + //public string ShareName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Alias("Share")] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share object, which will be restored", + ValueFromPipeline = true, + ParameterSetName = ShareObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSShare InputObject { get; set; } + + [Alias("N", "ShareName")] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Name, which will be restored.", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Name, which will be restored.", + ParameterSetName = AccountObjectParameterSet)] + public string Name { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Version, which will be restored from.", + ParameterSetName = AccountNameParameterSet)] + [Parameter(Mandatory = true, + HelpMessage = "Deleted Share Version, which will be restored from.", + ParameterSetName = AccountObjectParameterSet)] + public string DeletedShareVersion { get; set; } + + //[Parameter(Mandatory = false)] + // public SwitchParameter PassThru { get; set; } + + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + switch (ParameterSetName) + { + case ShareObjectParameterSet: + if(InputObject.Deleted != true) + { + throw new ArithmeticException(string.Format("The input share {0} is not deleted, so can't restore.", this.InputObject.Name)); + } + this.ResourceGroupName = InputObject.ResourceGroupName; + this.StorageAccountName = InputObject.StorageAccountName; + this.Name = InputObject.Name; + this.DeletedShareVersion = InputObject.Version; + break; + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + default: + break; + } + + if (ShouldProcess(this.Name, "Restore Share")) + { + this.StorageClient.FileShares.Restore( + this.ResourceGroupName, + this.StorageAccountName, + this.Name, + this.Name, + this.DeletedShareVersion); + + + var Share = this.StorageClient.FileShares.Get( + this.ResourceGroupName, + this.StorageAccountName, + this.Name); + WriteObject(new PSShare(Share)); + } + } + } +} diff --git a/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs b/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs index 843996235d62..e5f87cbcc22f 100644 --- a/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs +++ b/src/Storage/Storage.Management/File/StorageFileBaseCmdlet.cs @@ -32,6 +32,7 @@ public abstract class StorageFileBaseCmdlet : AzureRMCmdlet protected const string NameAlias = "Name"; protected const string StorageShareNounStr = "StorageShare"; + protected const string StorageFileServiceProperty = "StorageFileServiceProperty"; public const string StorageAccountResourceType = "Microsoft.Storage/storageAccounts"; diff --git a/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs b/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs new file mode 100644 index 000000000000..b844a97cf00f --- /dev/null +++ b/src/Storage/Storage.Management/File/UpdateAzAzStorageFileServiceProperty.cs @@ -0,0 +1,173 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +namespace Microsoft.Azure.Commands.Management.Storage +{ + using Microsoft.Azure.Commands.Management.Storage.Models; + using Microsoft.Azure.Management.Storage; + using Microsoft.Azure.Management.Storage.Models; + using System; + using System.Collections.Generic; + using System.Management.Automation; + using Microsoft.Azure.Commands.ResourceManager.Common.ArgumentCompleters; + using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; + + /// + /// Modify Azure Storage service properties + /// + [Cmdlet("Update", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + StorageFileServiceProperty, SupportsShouldProcess = true, DefaultParameterSetName = AccountNameParameterSet), OutputType(typeof(PSFileServiceProperties))] + public class UpdateAzStorageFileServicePropertyCommand : StorageFileBaseCmdlet + { + /// + /// AccountName Parameter Set + /// + private const string AccountNameParameterSet = "AccountName"; + + /// + /// Account object parameter set + /// + private const string AccountObjectParameterSet = "AccountObject"; + + /// + /// BlobServiceProperties ResourceId parameter set + /// + private const string PropertiesResourceIdParameterSet = "FileServicePropertiesResourceId"; + + [Parameter( + Position = 0, + Mandatory = true, + HelpMessage = "Resource Group Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceGroupCompleter] + [ValidateNotNullOrEmpty] + public string ResourceGroupName { get; set; } + + [Parameter( + Position = 1, + Mandatory = true, + HelpMessage = "Storage Account Name.", + ParameterSetName = AccountNameParameterSet)] + [ResourceNameCompleter("Microsoft.Storage/storageAccounts", nameof(ResourceGroupName))] + [Alias(AccountNameAlias, NameAlias)] + [ValidateNotNullOrEmpty] + public string StorageAccountName { get; set; } + + [Parameter(Mandatory = true, + HelpMessage = "Storage account object", + ValueFromPipeline = true, + ParameterSetName = AccountObjectParameterSet)] + [ValidateNotNullOrEmpty] + public PSStorageAccount StorageAccount { get; set; } + + [Parameter( + Position = 0, + Mandatory = true, + ValueFromPipelineByPropertyName = true, + HelpMessage = "Input a Storage account Resource Id, or a File service properties Resource Id.", + ParameterSetName = PropertiesResourceIdParameterSet)] + [ValidateNotNullOrEmpty] + public string ResourceId { get; set; } + + [Parameter( + Mandatory = false, + HelpMessage = "Enable share Delete Retention Policy for the storage account by set to $true, disable share Delete Retention Policy by set to $false.")] + [ValidateNotNullOrEmpty] + public bool EnableShareDeleteRetentionPolicy + { + get + { + return enableShareDeleteRetentionPolicy is null ? false : enableShareDeleteRetentionPolicy.Value; + } + set + { + enableShareDeleteRetentionPolicy = value; + } + } + private bool? enableShareDeleteRetentionPolicy = null; + + [Parameter(Mandatory = false, HelpMessage = "Sets the number of retention days for the share DeleteRetentionPolicy. The value should only be set when enable share Delete Retention Policy.")] + [Alias("Days", "RetentionDays")] + public int ShareRetentionDays + { + get + { + return shareRetentionDays is null ? 0 : shareRetentionDays.Value; + } + set + { + shareRetentionDays = value; + } + } + private int? shareRetentionDays = null; + + public override void ExecuteCmdlet() + { + base.ExecuteCmdlet(); + + // Check input parameter + // ShareRetentionDays should only be specified when EnableShareDeleteRetentionPolicy is true + if (this.enableShareDeleteRetentionPolicy == null || this.enableShareDeleteRetentionPolicy.Value == false) + { + if (this.ShareRetentionDays != 0) + { + throw new ArgumentException("ShareRetentionDays should only be specified when EnableShareDeleteRetentionPolicy is true."); + } + } + else + { + if (this.ShareRetentionDays == 0) + { + throw new ArgumentException("ShareRetentionDays must be specified when EnableShareDeleteRetentionPolicy is true."); + } + } + + if (ShouldProcess("FileServiceProperties", "Update")) + { + switch (ParameterSetName) + { + case AccountObjectParameterSet: + this.ResourceGroupName = StorageAccount.ResourceGroupName; + this.StorageAccountName = StorageAccount.StorageAccountName; + break; + case PropertiesResourceIdParameterSet: + ResourceIdentifier blobServicePropertiesResource = new ResourceIdentifier(ResourceId); + this.ResourceGroupName = blobServicePropertiesResource.ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(ResourceId); + break; + default: + // For AccountNameParameterSet, the ResourceGroupName and StorageAccountName can get from input directly + break; + } + DeleteRetentionPolicy deleteRetentionPolicy = null; + if (this.enableShareDeleteRetentionPolicy != null) + { + deleteRetentionPolicy = new DeleteRetentionPolicy(); + deleteRetentionPolicy.Enabled = this.enableShareDeleteRetentionPolicy.Value; + if (this.enableShareDeleteRetentionPolicy.Value == true) + { + deleteRetentionPolicy.Days = ShareRetentionDays; + } + } + + FileServiceProperties serviceProperties = this.StorageClient.FileServices.SetServiceProperties(this.ResourceGroupName, this.StorageAccountName, + shareDeleteRetentionPolicy: deleteRetentionPolicy); + + // Get all File service properties from server for output + serviceProperties = this.StorageClient.FileServices.GetServiceProperties(this.ResourceGroupName, this.StorageAccountName); + + WriteObject(new PSFileServiceProperties(serviceProperties)); + } + } + } +} diff --git a/src/Storage/Storage.Management/Models/PSContainer.cs b/src/Storage/Storage.Management/Models/PSContainer.cs index 7c04bf9dde8c..ffde1d85b6fd 100644 --- a/src/Storage/Storage.Management/Models/PSContainer.cs +++ b/src/Storage/Storage.Management/Models/PSContainer.cs @@ -216,7 +216,7 @@ public class PSImmutabilityPolicy { public PSImmutabilityPolicy(StorageModels.ImmutabilityPolicy policy) { - this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays; + this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays.Value; this.State = policy.State; this.Etag = policy.Etag; this.Name = policy.Name; @@ -238,7 +238,7 @@ public class PSImmutabilityPolicyProperties { public PSImmutabilityPolicyProperties(StorageModels.ImmutabilityPolicyProperties policy) { - this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays; + this.ImmutabilityPeriodSinceCreationInDays = policy.ImmutabilityPeriodSinceCreationInDays.Value; this.State = policy.State; this.Etag = policy.Etag; this.AllowProtectedAppendWrites = policy.AllowProtectedAppendWrites; diff --git a/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs new file mode 100644 index 000000000000..4597292e6fe1 --- /dev/null +++ b/src/Storage/Storage.Management/Models/PSFileServiceProperties.cs @@ -0,0 +1,64 @@ +// ---------------------------------------------------------------------------------- +// +// Copyright Microsoft Corporation +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// http://www.apache.org/licenses/LICENSE-2.0 +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. +// ---------------------------------------------------------------------------------- + +using Microsoft.Azure.Management.Internal.Resources.Utilities.Models; +using Microsoft.Azure.Management.Storage.Models; +using Microsoft.WindowsAzure.Commands.Common.Attributes; +using System; +using System.Collections.Generic; + +namespace Microsoft.Azure.Commands.Management.Storage.Models +{ + /// + /// Wrapper of SDK type FileServiceProperties + /// + public class PSFileServiceProperties + { + [Ps1Xml(Label = "ResourceGroupName", Target = ViewControl.Table, Position = 0)] + public string ResourceGroupName { get; set; } + [Ps1Xml(Label = "StorageAccountName", Target = ViewControl.Table, Position = 1)] + public string StorageAccountName { get; set; } + public string Name { get; set; } + public string Id { get; set; } + public string Type { get; set; } + [Ps1Xml(Label = "DeleteRetentionPolicy.Enabled", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Enabled", Position = 2)] + [Ps1Xml(Label = "DeleteRetentionPolicy.Days", Target = ViewControl.Table, ScriptBlock = "$_.DeleteRetentionPolicy.Days", Position = 3)] + public PSDeleteRetentionPolicy ShareDeleteRetentionPolicy { get; set; } + public PSCorsRules Cors { get; set; } + + public PSFileServiceProperties() + { } + + public PSFileServiceProperties(FileServiceProperties policy) + { + this.ResourceGroupName = (new ResourceIdentifier(policy.Id)).ResourceGroupName; + this.StorageAccountName = PSBlobServiceProperties.GetStorageAccountNameFromResourceId(policy.Id); + this.Id = policy.Id; + this.Name = policy.Name; + this.Type = policy.Type; + this.Cors = policy.Cors is null ? null : new PSCorsRules(policy.Cors); + this.ShareDeleteRetentionPolicy = policy.ShareDeleteRetentionPolicy is null ? null : new PSDeleteRetentionPolicy(policy.ShareDeleteRetentionPolicy); + } + public FileServiceProperties ParseBlobServiceProperties() + { + return new FileServiceProperties + { + Cors = this.Cors is null ? null : this.Cors.ParseCorsRules(), + ShareDeleteRetentionPolicy = this.ShareDeleteRetentionPolicy is null ? null : this.ShareDeleteRetentionPolicy.ParseDeleteRetentionPolicy(), + }; + } + } +} + + \ No newline at end of file diff --git a/src/Storage/Storage.Management/help/Az.Storage.md b/src/Storage/Storage.Management/help/Az.Storage.md index d2674769ee20..d5588fe09b57 100644 --- a/src/Storage/Storage.Management/help/Az.Storage.md +++ b/src/Storage/Storage.Management/help/Az.Storage.md @@ -116,6 +116,9 @@ Gets the state of a copy operation. ### [Get-AzStorageFileHandle](Get-AzStorageFileHandle.md) Lists file handles of a file share, a file directory or a file. +### [Get-AzStorageFileServiceProperty](Get-AzStorageFileServiceProperty.md) +Gets service properties for Azure Storage File services. + ### [Get-AzStorageObjectReplicationPolicy](Get-AzStorageObjectReplicationPolicy.md) Gets or lists object replication policy of a Storage account. @@ -302,6 +305,9 @@ Removes a storage table. ### [Remove-AzStorageTableStoredAccessPolicy](Remove-AzStorageTableStoredAccessPolicy.md) Removes a stored access policy from an Azure storage table. +### [Restore-AzRmStorageShare](Restore-AzRmStorageShare.md) +Restores a deleted file share. + ### [Restore-AzStorageBlobRange](Restore-AzStorageBlobRange.md) Restores a Storage account for specific blob ranges. @@ -389,6 +395,9 @@ Update the NetworkRule property of a Storage account ### [Update-AzStorageBlobServiceProperty](Update-AzStorageBlobServiceProperty.md) Modifies the service properties for the Azure Storage Blob service. +### [Update-AzStorageFileServiceProperty](Update-AzStorageFileServiceProperty.md) +Modifies the service properties for the Azure Storage File service. + ### [Update-AzStorageServiceProperty](Update-AzStorageServiceProperty.md) Modifies the properties for the Azure Storage service. diff --git a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md index 2655cabe9304..7a6330a79884 100644 --- a/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/Get-AzRmStorageShare.md @@ -20,7 +20,7 @@ Get-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] [-StorageAccountName] +Get-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] [-IncludeDeleted] [-DefaultProfile ] [] ``` @@ -32,8 +32,8 @@ Get-AzRmStorageShare -StorageAccount -Name [-GetShar ### AccountObject ``` -Get-AzRmStorageShare -StorageAccount [-DefaultProfile ] - [] +Get-AzRmStorageShare -StorageAccount [-IncludeDeleted] + [-DefaultProfile ] [] ``` ### ShareResourceId @@ -53,8 +53,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 ``` @@ -66,8 +66,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- share1 5120 TransactionOptimized share2 5120 TransactionOptimized ``` @@ -80,8 +80,8 @@ Get-AzStorageAccount -ResourceGroupName "myresourcegroup" -StorageAccountName "m ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 ``` @@ -93,13 +93,27 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocol5 AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 5120 2097152 ``` This command gets a Storage file share with Storage account name and share name, and include the share usage in bytes. +### Example 5: List all Storage file shares of a Storage account, include the deleted shares +``` +PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccountName "mystorageaccount" -IncludeDeleted + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +test 100 TransactionOptimized +share1 100 TransactionOptimized True 01D61FD1FC5498B6 +``` + +This command lists all Storage file shares include the deleted shares of a Storage account with Storage account name. + ## PARAMETERS ### -DefaultProfile @@ -132,6 +146,21 @@ Accept pipeline input: False Accept wildcard characters: False ``` +### -IncludeDeleted +Include deleted shares, by default list shares won't include deleted shares + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + ### -Name Share Name diff --git a/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md new file mode 100644 index 000000000000..c2ef9ff6f779 --- /dev/null +++ b/src/Storage/Storage.Management/help/Get-AzStorageFileServiceProperty.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/get-azstoragefileserviceproperty +schema: 2.0.0 +--- + +# Get-AzStorageFileServiceProperty + +## SYNOPSIS +Gets service properties for Azure Storage File services. + +## SYNTAX + +### AccountName (Default) +``` +Get-AzStorageFileServiceProperty [-ResourceGroupName] [-StorageAccountName] + [-DefaultProfile ] [] +``` + +### AccountObject +``` +Get-AzStorageFileServiceProperty -StorageAccount [-DefaultProfile ] + [] +``` + +### FileServicePropertiesResourceId +``` +Get-AzStorageFileServiceProperty [-ResourceId] [-DefaultProfile ] + [] +``` + +## DESCRIPTION +The **Get-AzStorageFileServiceProperty** cmdlet gets the service properties for Azure Storage File services. + +## EXAMPLES + +### Example 1: Get Azure Storage File services property of a specified Storage Account +```powershell +PS C:\> Get-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" + +StorageAccountName ResourceGroupName ShareDeleteRetentionPolicy.Enabled ShareDeleteRetentionPolicy.Days +------------------ ----------------- ---------------------------------- ------------------------------- +mystorageaccount myresourcegroup True 5 +``` + +This command gets the File services property of a specified Storage Account. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a File service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: FileServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/New-AzRmStorageShare.md b/src/Storage/Storage.Management/help/New-AzRmStorageShare.md index 179a658a81c2..f979dd596cfe 100644 --- a/src/Storage/Storage.Management/help/New-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/New-AzRmStorageShare.md @@ -36,8 +36,8 @@ PS C:\>New-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare ``` @@ -49,8 +49,8 @@ Get-AzStorageAccount -ResourceGroupName "myresourcegroup" -StorageAccountName "m ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare ``` diff --git a/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md new file mode 100644 index 000000000000..351ac51e384b --- /dev/null +++ b/src/Storage/Storage.Management/help/Restore-AzRmStorageShare.md @@ -0,0 +1,217 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/restore-azrmstorageshare +schema: 2.0.0 +--- + +# Restore-AzRmStorageShare + +## SYNOPSIS +Restores a deleted file share. + +## SYNTAX + +### AccountName (Default) +``` +Restore-AzRmStorageShare [-ResourceGroupName] [-StorageAccountName] -Name + -DeletedShareVersion [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +### AccountObject +``` +Restore-AzRmStorageShare -StorageAccount -Name -DeletedShareVersion + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### ShareObject +``` +Restore-AzRmStorageShare -InputObject [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Restore-AzRmStorageShare** cmdlet restores a deleted file share within a valid retention days if share soft delete is enabled. + +## EXAMPLES + +### Example 1: Remove and restore a share +```powershell +PS C:\> Remove-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Name $shareName -Force + +PS C:\> Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -IncludeDeleted + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +test 100 TransactionOptimized +share1 100 TransactionOptimized True 01D61FD1FC5498B6 + +PS C:\> Restore-AzRmStorageShare -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -Name $shareName -DeletedShareVersion 01D61FD1FC5498B6 + + ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount + +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- +share1 100 +``` + +This command first delete a file share, and then list shares and see the deleted share version, finally restore it back to a normal share. +Need enabled share soft delete with Update-AzStorageFileServiceProperty, before delete the share. + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DeletedShareVersion +Deleted Share Version, which will be restored from. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +Deleted Share object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSShare +Parameter Sets: ShareObject +Aliases: Share + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +Deleted Share Name, which will be restored. + +```yaml +Type: System.String +Parameter Sets: AccountName, AccountObject +Aliases: N, ShareName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceGroupName +Resource Group Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### Microsoft.Azure.Commands.Management.Storage.Models.PSShare + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSShare + +## NOTES + +## RELATED LINKS diff --git a/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md b/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md index 62d7aab2cd8f..444d4cc837a6 100644 --- a/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md +++ b/src/Storage/Storage.Management/help/Update-AzRmStorageShare.md @@ -50,8 +50,8 @@ PS C:\>$share ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- myshare 200 PS C:\>$share.Metadata @@ -78,8 +78,8 @@ PS C:\>Get-AzRmStorageShare -ResourceGroupName "myresourcegroup" -StorageAccount ResourceGroupName: myresourcegroup, StorageAccountName: mystorageaccount -Name QuotaGiB EnabledProtocols AccessTier Deleted Version ShareUsageBytes ----- -------- ---------------- ---------- ------- ------- --------------- +Name QuotaGiB EnabledProtocol AccessTier Deleted Version ShareUsageBytes +---- -------- --------------- ---------- ------- ------- --------------- share1 5000 share2 5000 ``` diff --git a/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md new file mode 100644 index 000000000000..08f653e14982 --- /dev/null +++ b/src/Storage/Storage.Management/help/Update-AzStorageFileServiceProperty.md @@ -0,0 +1,206 @@ +--- +external help file: Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll-Help.xml +Module Name: Az.Storage +online version: https://docs.microsoft.com/en-us/powershell/module/az.storage/update-azstoragefileserviceproperty +schema: 2.0.0 +--- + +# Update-AzStorageFileServiceProperty + +## SYNOPSIS +Modifies the service properties for the Azure Storage File service. + +## SYNTAX + +### AccountName (Default) +``` +Update-AzStorageFileServiceProperty [-ResourceGroupName] [-StorageAccountName] + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### AccountObject +``` +Update-AzStorageFileServiceProperty -StorageAccount + [-EnableShareDeleteRetentionPolicy ] [-ShareRetentionDays ] + [-DefaultProfile ] [-WhatIf] [-Confirm] [] +``` + +### FileServicePropertiesResourceId +``` +Update-AzStorageFileServiceProperty [-ResourceId] [-EnableShareDeleteRetentionPolicy ] + [-ShareRetentionDays ] [-DefaultProfile ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +The **Update-AzStorageFileServiceProperty** cmdlet modifies the service properties for the Azure Storage File service. + +## EXAMPLES + +### Example 1: Enable File share softdelete +```powershell +PS C:\> Update-AzStorageFileServiceProperty -ResourceGroupName "myresourcegroup" -AccountName "mystorageaccount" -EnableShareDeleteRetentionPolicy $true -ShareRetentionDays 5 + +StorageAccountName ResourceGroupName ShareDeleteRetentionPolicy.Enabled ShareDeleteRetentionPolicy.Days +------------------ ----------------- ---------------------------------- ------------------------------- +mystorageaccount myresourcegroup True 5 +``` + +This command enables File share softdelete delete with retention days as 5 + +## PARAMETERS + +### -DefaultProfile +The credentials, account, tenant, and subscription used for communication with Azure. + +```yaml +Type: Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer +Parameter Sets: (All) +Aliases: AzContext, AzureRmContext, AzureCredential + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableShareDeleteRetentionPolicy +Enable share Delete Retention Policy for the storage account by set to $true, disable share Delete Retention Policy by set to $false. + +```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. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResourceId +Input a Storage account Resource Id, or a File service properties Resource Id. + +```yaml +Type: System.String +Parameter Sets: FileServicePropertiesResourceId +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ShareRetentionDays +Sets the number of retention days for the share DeleteRetentionPolicy. +The value should only be set when enable share Delete Retention Policy. + +```yaml +Type: System.Int32 +Parameter Sets: (All) +Aliases: Days, RetentionDays + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StorageAccount +Storage account object + +```yaml +Type: Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount +Parameter Sets: AccountObject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -StorageAccountName +Storage Account Name. + +```yaml +Type: System.String +Parameter Sets: AccountName +Aliases: AccountName, Name + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: System.Management.Automation.SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSStorageAccount + +### System.String + +## OUTPUTS + +### Microsoft.Azure.Commands.Management.Storage.Models.PSFileServiceProperties + +## NOTES + +## RELATED LINKS diff --git a/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv index d33973cc8f09..920fb6eabc7c 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Storage/BreakingChangeIssues.csv @@ -1,3 +1,3 @@ "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set 'AccountObject' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set 'AccountObject' back to cmdlet 'Get-AzRmStorageShare'." "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set 'ShareResourceId' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set 'ShareResourceId' back to cmdlet 'Get-AzRmStorageShare'." -"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzRmStorageShare'." \ No newline at end of file +"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.GetAzureStorageShareCommand","Get-AzRmStorageShare","0","1050","The parameter set '__AllParameterSets' for cmdlet 'Get-AzRmStorageShare' has been removed.","Add parameter set '__AllParameterSets' back to cmdlet 'Get-AzRmStorageShare'." From 489b3b60c5ec181797732b552b6df3792429471a Mon Sep 17 00:00:00 2001 From: Wei Wei Date: Fri, 25 Sep 2020 17:38:39 +0800 Subject: [PATCH 2/2] [Storage] Fix the CI failures --- .../TestShareSoftDeletee.json | 800 ++++++++++-------- src/Storage/Storage.Management/ChangeLog.md | 6 +- .../Exceptions/Az.Storage/SignatureIssues.csv | 1 + 3 files changed, 467 insertions(+), 340 deletions(-) diff --git a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json index fb73f2b75e09..73c81af6f3f2 100644 --- a/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json +++ b/src/Storage/Storage.Management.Test/SessionRecords/Microsoft.Azure.Commands.Management.Storage.Test.ScenarioTests.StorageFileTests/TestShareSoftDeletee.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "187e7605-995d-4afe-90de-35dc3c104133" + "868a7e0f-b261-47ac-b440-23eee73e44eb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -27,16 +27,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11997" ], "x-ms-request-id": [ - "9143a26b-2fec-464a-8b86-e0b67eb89269" + "74fe18d3-70c9-437c-ab6b-5dfe2057fab0" ], "x-ms-correlation-request-id": [ - "9143a26b-2fec-464a-8b86-e0b67eb89269" + "74fe18d3-70c9-437c-ab6b-5dfe2057fab0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T164958Z:9143a26b-2fec-464a-8b86-e0b67eb89269" + "SOUTHEASTASIA:20200907T092609Z:74fe18d3-70c9-437c-ab6b-5dfe2057fab0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -45,7 +45,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:49:58 GMT" + "Mon, 07 Sep 2020 09:26:09 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -61,22 +61,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3547?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7539?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"West US\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8d39c7c3-abaa-4190-9c85-3c9c9ef1efc9" + "4ae804f1-24e2-493b-8d07-fba30cac903b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,16 +93,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-request-id": [ - "228e2e95-b568-469d-8202-942616c8de95" + "fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" ], "x-ms-correlation-request-id": [ - "228e2e95-b568-469d-8202-942616c8de95" + "fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165001Z:228e2e95-b568-469d-8202-942616c8de95" + "SOUTHEASTASIA:20200907T092612Z:fd4aa7fc-b758-4fd3-90a3-5a7ddf82db9b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:01 GMT" + "Mon, 07 Sep 2020 09:26:11 GMT" ], "Content-Length": [ "177" @@ -123,26 +123,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547\",\r\n \"name\": \"pstestrg3547\",\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/pstestrg7539\",\r\n \"name\": \"pstestrg7539\",\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=2019-06-01", "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9jaGVja05hbWVBdmFpbGFiaWxpdHk/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "RequestBody": "{\r\n \"name\": \"stopstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7b371bbf-6411-496f-9c2d-630c2e821099" + "5508d23a-a28f-4e9c-b301-73156a09c6b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -159,7 +159,7 @@ "no-cache" ], "x-ms-request-id": [ - "ed353e6a-7046-4d54-9e82-8f08f3c959d8" + "03f09ad0-f1b8-4f21-99f3-9ee576922920" ], "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" + "11998" ], "x-ms-correlation-request-id": [ - "f35a0b71-7db4-4a05-9f62-27a907f44663" + "e5286fbd-8885-4ad5-98d6-49752dc40b09" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165002Z:f35a0b71-7db4-4a05-9f62-27a907f44663" + "SOUTHEASTASIA:20200907T092613Z:e5286fbd-8885-4ad5-98d6-49752dc40b09" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:02 GMT" + "Mon, 07 Sep 2020 09:26:12 GMT" ], "Content-Length": [ "22" @@ -196,28 +196,28 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\"\r\n },\r\n \"kind\": \"StorageV2\",\r\n \"location\": \"eastus2(stage)\"\r\n}", + "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": [ - "a1257bf6-9175-42c0-8ca8-8b12d6b49c0a" + "e1905457-c0c3-49ea-b266-16d9c844978b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "106" + "99" ] }, "ResponseHeaders": { @@ -228,13 +228,13 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/370edc75-f308-4c21-a4e9-2d97c0fe6218?monitor=true&api-version=2019-06-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/95b5b623-0d1c-4f2c-b12b-27e18c17d06f?monitor=true&api-version=2019-06-01" ], "Retry-After": [ "17" ], "x-ms-request-id": [ - "370edc75-f308-4c21-a4e9-2d97c0fe6218" + "95b5b623-0d1c-4f2c-b12b-27e18c17d06f" ], "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" + "1197" ], "x-ms-correlation-request-id": [ - "4187358e-6d0b-45d4-a3c5-e8b9f80fc591" + "32843e15-68be-4bc2-9451-86cda06779a3" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165008Z:4187358e-6d0b-45d4-a3c5-e8b9f80fc591" + "SOUTHEASTASIA:20200907T092623Z:32843e15-68be-4bc2-9451-86cda06779a3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:07 GMT" + "Mon, 07 Sep 2020 09:26:22 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -271,16 +271,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/eastus2(stage)/asyncoperations/370edc75-f308-4c21-a4e9-2d97c0fe6218?monitor=true&api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvZWFzdHVzMihzdGFnZSkvYXN5bmNvcGVyYXRpb25zLzM3MGVkYzc1LWYzMDgtNGMyMS1hNGU5LTJkOTdjMGZlNjIxOD9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/providers/Microsoft.Storage/locations/westus/asyncoperations/95b5b623-0d1c-4f2c-b12b-27e18c17d06f?monitor=true&api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvd2VzdHVzL2FzeW5jb3BlcmF0aW9ucy85NWI1YjYyMy0wZDFjLTRmMmMtYjEyYi0yN2UxOGMxN2QwNmY/bW9uaXRvcj10cnVlJmFwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -291,7 +291,7 @@ "no-cache" ], "x-ms-request-id": [ - "8845e46f-59f0-4cea-a1cd-aa033fb2b774" + "d39c8b94-126e-4450-8521-8ddd5084d011" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -300,22 +300,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "14ad300c-fbd3-41ce-a23a-33ad92bdaaf0" + "936c94ad-f507-4c4e-91cf-4e82d893e072" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165025Z:14ad300c-fbd3-41ce-a23a-33ad92bdaaf0" + "SOUTHEASTASIA:20200907T092640Z:936c94ad-f507-4c4e-91cf-4e82d893e072" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:25 GMT" + "Mon, 07 Sep 2020 09:26:40 GMT" ], "Content-Length": [ - "1271" + "1256" ], "Content-Type": [ "application/json" @@ -324,26 +324,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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\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/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\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-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c635293e-200d-4658-b377-cf8111d76c51" + "7e987b12-d656-41c1-91f9-bf04b66597a8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -354,7 +354,7 @@ "no-cache" ], "x-ms-request-id": [ - "b42f8c6a-f982-405e-894d-af8ac771843b" + "90f8e19e-7844-489a-8466-55bb59856ed0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -363,22 +363,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "b2400e67-f80c-478b-a2d2-49667d9d3f81" + "e29af36a-1ed9-45f7-a0ec-8446a1634bd4" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165025Z:b2400e67-f80c-478b-a2d2-49667d9d3f81" + "SOUTHEASTASIA:20200907T092641Z:e29af36a-1ed9-45f7-a0ec-8446a1634bd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:25 GMT" + "Mon, 07 Sep 2020 09:26:41 GMT" ], "Content-Length": [ - "1271" + "1256" ], "Content-Type": [ "application/json" @@ -387,26 +387,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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\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/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\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-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.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/pstestrg3547/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzP2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "465d6ed6-ca29-43e0-b5d5-d53e6b5c7875" + "9d3f5258-f120-4783-b714-04d7e40210cd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -417,7 +417,7 @@ "no-cache" ], "x-ms-request-id": [ - "cec4510c-f2ad-48ce-8624-7c8ccbde65e2" + "91cc803b-49a3-4b96-bc2c-6b7aa4838b21" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -426,22 +426,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-correlation-request-id": [ - "d51e7cf1-3766-4a8c-a139-7791cbc4af33" + "2a5a30a8-4b0c-432d-94c1-b7bff04c3e4a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165026Z:d51e7cf1-3766-4a8c-a139-7791cbc4af33" + "SOUTHEASTASIA:20200907T092641Z:2a5a30a8-4b0c-432d-94c1-b7bff04c3e4a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:25 GMT" + "Mon, 07 Sep 2020 09:26:41 GMT" ], "Content-Length": [ - "1283" + "1268" ], "Content-Type": [ "application/json" @@ -450,26 +450,26 @@ "-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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547\",\r\n \"name\": \"stopstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"eastus2(stage)\",\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-05-01T16:50:07.4141845Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-05-01T16:50:07.4141845Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-05-01T16:50:07.3516804Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg3547.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg3547.z1.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg3547.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg3547.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg3547.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg3547.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"eastus2(stage)\",\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/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539\",\r\n \"name\": \"stopstestrg7539\",\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-09-07T09:26:22.8625685Z\"\r\n },\r\n \"blob\": {\r\n \"keyType\": \"Account\",\r\n \"enabled\": true,\r\n \"lastEnabledTime\": \"2020-09-07T09:26:22.8625685Z\"\r\n }\r\n },\r\n \"keySource\": \"Microsoft.Storage\"\r\n },\r\n \"accessTier\": \"Hot\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2020-09-07T09:26:22.7688549Z\",\r\n \"primaryEndpoints\": {\r\n \"dfs\": \"https://stopstestrg7539.dfs.core.windows.net/\",\r\n \"web\": \"https://stopstestrg7539.z22.web.core.windows.net/\",\r\n \"blob\": \"https://stopstestrg7539.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg7539.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg7539.table.core.windows.net/\",\r\n \"file\": \"https://stopstestrg7539.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/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8304bb4f-9e3b-404b-9cb5-27901246ac99" + "f91b4924-51ea-4229-85b8-085f3dd97072" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -486,7 +486,7 @@ "no-cache" ], "x-ms-request-id": [ - "2a2708ce-4a78-46c1-ab16-388ce401c0d5" + "166cdb6a-a1cc-40dd-a0a0-62bbed02dfcd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -495,19 +495,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "4c3ab9f4-d8d4-43ae-bb4f-be7816770c13" + "1fdb61df-dd7e-4abd-bc6e-a219dabab7dc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165026Z:4c3ab9f4-d8d4-43ae-bb4f-be7816770c13" + "SOUTHEASTASIA:20200907T092642Z:1fdb61df-dd7e-4abd-bc6e-a219dabab7dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:26 GMT" + "Mon, 07 Sep 2020 09:26:42 GMT" ], "Content-Length": [ "312" @@ -519,26 +519,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c4ad451c-ad18-4b3f-b38a-fa52d8e1616f" + "4320622a-7def-4186-98eb-b5f520783b06" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,7 +555,7 @@ "no-cache" ], "x-ms-request-id": [ - "14a70ddc-ff0a-476e-999b-6a6ae2a73d16" + "29356e8c-a1d8-4a5e-8990-2e45671e72aa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -564,19 +564,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1193" ], "x-ms-correlation-request-id": [ - "6589c647-80f2-4910-848f-45bc57704c3f" + "7fb618ed-9259-4d51-9845-df7ca4029341" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165133Z:6589c647-80f2-4910-848f-45bc57704c3f" + "SOUTHEASTASIA:20200907T092748Z:7fb618ed-9259-4d51-9845-df7ca4029341" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:33 GMT" + "Mon, 07 Sep 2020 09:27:48 GMT" ], "Content-Length": [ "304" @@ -588,26 +588,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43101e12-b722-4d92-bb89-d26ec6405b17" + "991602d8-a31c-4c67-a052-90ac2181546c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -618,7 +618,7 @@ "no-cache" ], "x-ms-request-id": [ - "c890c712-2cb6-4bd4-a3f7-1711c97aadef" + "ed4c2668-8128-40d6-96b7-64b74b4ed5d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -627,22 +627,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "3535b96c-b59a-4267-a130-6d918e1f70c3" + "96efb748-2d76-48dd-ad82-949d5f5a764e" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165027Z:3535b96c-b59a-4267-a130-6d918e1f70c3" + "SOUTHEASTASIA:20200907T092642Z:96efb748-2d76-48dd-ad82-949d5f5a764e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:26 GMT" + "Mon, 07 Sep 2020 09:26:42 GMT" ], "Content-Length": [ - "384" + "446" ], "Content-Type": [ "application/json" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": true,\r\n \"days\": 5\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/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\": 5\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2fa745b-6ab8-45b3-a598-17358a1408b0" + "c89cfaed-a90c-4656-a18d-e58b6758b437" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -681,7 +681,7 @@ "no-cache" ], "x-ms-request-id": [ - "e4e81a77-d051-441f-9074-289cb5843ebb" + "f0582e99-8b16-427f-82af-9921ea9c1ec3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -690,22 +690,148 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11993" + ], + "x-ms-correlation-request-id": [ + "695d7642-fb04-4925-922f-ce2881e623fd" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092642Z:695d7642-fb04-4925-922f-ce2881e623fd" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:26:42 GMT" + ], + "Content-Length": [ + "446" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/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\": 5\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2589a13f-be4d-4a32-913d-3ed1ff50776d" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "3a035d5e-50fa-403e-aa5a-b37cd012f3ca" + ], + "Strict-Transport-Security": [ + "max-age=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": [ + "67939ba5-2364-42dc-b9d3-e08868feb451" + ], + "x-ms-routing-request-id": [ + "SOUTHEASTASIA:20200907T092748Z:67939ba5-2364-42dc-b9d3-e08868feb451" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Mon, 07 Sep 2020 09:27:48 GMT" + ], + "Content-Length": [ + "447" + ], + "Content-Type": [ + "application/json" + ], + "Expires": [ + "-1" + ] + }, + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/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\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdD9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72563395-6d3c-4369-b3b7-665be440fc69" + ], + "Accept-Language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.29130.01", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "7f8c8766-9bcc-4ca1-8475-ed7d7f997601" + ], + "Strict-Transport-Security": [ + "max-age=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": [ - "d4a11be4-368a-48a3-b7d2-4f1230666f6e" + "78d63e9e-4eeb-462a-a937-6085ab3e3bb0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165133Z:d4a11be4-368a-48a3-b7d2-4f1230666f6e" + "SOUTHEASTASIA:20200907T092749Z:78d63e9e-4eeb-462a-a937-6085ab3e3bb0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:33 GMT" + "Mon, 07 Sep 2020 09:27:48 GMT" ], "Content-Length": [ - "385" + "447" ], "Content-Type": [ "application/json" @@ -714,26 +840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default\",\r\n \"name\": \"default\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices\",\r\n \"properties\": {\r\n \"cors\": {\r\n \"corsRules\": []\r\n },\r\n \"shareDeleteRetentionPolicy\": {\r\n \"enabled\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", + "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/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\": false,\r\n \"days\": 0\r\n }\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "662c13c0-3a33-429c-8199-407822e4ec5f" + "4117dfba-2fc8-4d91-b417-1914d0291e7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -750,10 +876,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7EDEFC0AE9B70\"" + "\"0x8D85310223A963B\"" ], "x-ms-request-id": [ - "470e8d6b-d527-45e2-9223-1d4c5b451fb0" + "3fdf2a44-16ea-4d12-994a-9f41d852e245" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -762,19 +888,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "e0e4e514-4acc-404b-9869-d709041f1385" + "c6c958a7-2267-4cec-9e3d-4ae79c3d6798" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165028Z:e0e4e514-4acc-404b-9869-d709041f1385" + "SOUTHEASTASIA:20200907T092643Z:c6c958a7-2267-4cec-9e3d-4ae79c3d6798" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:27 GMT" + "Mon, 07 Sep 2020 09:26:43 GMT" ], "Content-Length": [ "286" @@ -786,26 +912,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5fe70af8-bda6-4de8-abf8-56ebfc8c5345" + "58bec81e-6400-4f0b-b175-11ccbe4248dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -816,10 +942,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7EDEFC0AE9B70\"" + "\"0x8D85310223A963B\"" ], "x-ms-request-id": [ - "cdc6b110-bc43-48a6-a257-829d77f76d0a" + "00397194-e868-4a4f-9b7c-f9669d9f8422" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -828,22 +954,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11992" ], "x-ms-correlation-request-id": [ - "fae4a1a3-6e22-4eaa-81a5-84182af5bffa" + "920098dd-519e-48ef-8b11-f06104e39642" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165028Z:fae4a1a3-6e22-4eaa-81a5-84182af5bffa" + "SOUTHEASTASIA:20200907T092643Z:920098dd-519e-48ef-8b11-f06104e39642" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:28 GMT" + "Mon, 07 Sep 2020 09:26:43 GMT" ], "Content-Length": [ - "400" + "436" ], "Content-Type": [ "application/json" @@ -852,26 +978,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29dbc0cc-5c3b-43ab-8f48-c000d6c1f177" + "d15edb77-dee7-4921-abb3-4f37e27841ea" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -882,10 +1008,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7EDEFE68AB3F7\"" + "\"0x8D8531047EDC9CC\"" ], "x-ms-request-id": [ - "69ee1165-2bde-4f1d-8856-17d81bd7e46d" + "afa2d739-0db3-44ed-acb0-e9fd4faed33e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -894,22 +1020,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-correlation-request-id": [ - "553a6cef-7a17-4021-885f-fa985db18b5b" + "61c2f7f6-def6-4c36-a6c4-58c4f5af0e3d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165132Z:553a6cef-7a17-4021-885f-fa985db18b5b" + "SOUTHEASTASIA:20200907T092746Z:61c2f7f6-def6-4c36-a6c4-58c4f5af0e3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:31 GMT" + "Mon, 07 Sep 2020 09:27:46 GMT" ], "Content-Length": [ - "400" + "436" ], "Content-Type": [ "application/json" @@ -918,26 +1044,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUycHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUycHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "PUT", "RequestBody": "{}", "RequestHeaders": { "x-ms-client-request-id": [ - "728252d7-39c7-4ca3-8959-33c055643a76" + "53e5e272-b338-456f-80b4-6ee61885c48e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -954,10 +1080,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7EDEFC138F324\"" + "\"0x8D8531022C4ECF5\"" ], "x-ms-request-id": [ - "0ef1d3a9-582a-4cf1-af59-c8c34504e88f" + "979bea62-8557-43a2-9c56-a66bbdd50254" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -966,19 +1092,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "d24873c7-bd70-4c49-ae07-aa950800ba4f" + "bfc1fd2c-d690-47bd-8a75-102976d45798" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165029Z:d24873c7-bd70-4c49-ae07-aa950800ba4f" + "SOUTHEASTASIA:20200907T092644Z:bfc1fd2c-d690-47bd-8a75-102976d45798" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:28 GMT" + "Mon, 07 Sep 2020 09:26:44 GMT" ], "Content-Length": [ "286" @@ -990,26 +1116,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\"\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01&$expand=stats", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEmJGV4cGFuZD1zdGF0cw==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01&$expand=stats", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDEmJGV4cGFuZD1zdGF0cw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "07066681-c2a6-4ea7-90ef-32e357a553e9" + "277b571a-5d1f-430c-9686-bff9e4595a74" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1020,10 +1146,10 @@ "no-cache" ], "ETag": [ - "\"0x8D7EDEFC0AE9B70\"" + "\"0x8D85310223A963B\"" ], "x-ms-request-id": [ - "280129c3-a6a6-4449-9e81-015884de4a51" + "f38844e4-6ae7-4f24-a625-62673f000e1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,22 +1158,22 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11991" ], "x-ms-correlation-request-id": [ - "33695b84-c4e0-474f-95e2-afcdcb2ec8e0" + "36130b96-aa10-4c35-8291-5e73fcaafd66" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165029Z:33695b84-c4e0-474f-95e2-afcdcb2ec8e0" + "SOUTHEASTASIA:20200907T092644Z:36130b96-aa10-4c35-8291-5e73fcaafd66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:29 GMT" + "Mon, 07 Sep 2020 09:26:44 GMT" ], "Content-Length": [ - "420" + "456" ], "Content-Type": [ "application/json" @@ -1056,26 +1182,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"shareUsageBytes\": 0,\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"shareUsageBytes\": 0,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5P2FwaS12ZXJzaW9uPTIwMTktMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8a336fc6-5fbc-46ca-a1ff-87de5e4c7d28" + "b886fa31-25cb-4588-833a-6d094e9a26c2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1086,7 +1212,7 @@ "no-cache" ], "x-ms-request-id": [ - "79ec5c4b-132d-49d0-a3b7-231a07997aa9" + "f9de0845-0285-4b23-8620-dcb8595da94b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,19 +1221,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" + "14998" ], "x-ms-correlation-request-id": [ - "ab72989f-eb52-4dd5-be78-1a6cc58a7826" + "37881bda-8b9e-431a-b846-a4625f70eb7b" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165030Z:ab72989f-eb52-4dd5-be78-1a6cc58a7826" + "SOUTHEASTASIA:20200907T092644Z:37881bda-8b9e-431a-b846-a4625f70eb7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:29 GMT" + "Mon, 07 Sep 2020 09:26:44 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -1123,22 +1249,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e71336e9-7d46-4725-89eb-2de1420231d4" + "88ddcba3-d1f6-4eb1-8498-22bb371300be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1149,7 +1275,7 @@ "no-cache" ], "x-ms-request-id": [ - "21bbf57b-e45e-4bbd-8edb-e2b78963a0b3" + "3f29397f-c74a-4ff7-9e5c-0d6a909b994e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1158,19 +1284,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-correlation-request-id": [ - "c12d4e6f-de53-430c-aa79-f3ee5bdc30d4" + "b2bb7284-ec03-46ba-9454-0b649a2dcc76" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165030Z:c12d4e6f-de53-430c-aa79-f3ee5bdc30d4" + "SOUTHEASTASIA:20200907T092645Z:b2bb7284-ec03-46ba-9454-0b649a2dcc76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:29 GMT" + "Mon, 07 Sep 2020 09:26:45 GMT" ], "Content-Length": [ "1069" @@ -1182,26 +1308,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547_01D61FD89E19387B\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC0AE9B70\\\"\",\r\n \"properties\": {\r\n \"version\": \"01D61FD89E19387B\",\r\n \"deleted\": true,\r\n \"deletedTime\": \"Fri, 01 May 2020 16:50:29 GMT\",\r\n \"remainingRetentionDays\": 5,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:28Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539_01D684F8FFB4EDA9\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D85310223A963B\\\"\",\r\n \"properties\": {\r\n \"version\": \"01D684F8FFB4EDA9\",\r\n \"deleted\": true,\r\n \"deletedTime\": \"Mon, 07 Sep 2020 09:26:44 GMT\",\r\n \"remainingRetentionDays\": 5,\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:43Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01&$expand=deleted", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMSYkZXhwYW5kPWRlbGV0ZWQ=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86a9f281-032c-4df0-8bc8-642dacc742a8" + "52b41e7c-dcc6-40e6-9349-de04922d5267" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1212,7 +1338,7 @@ "no-cache" ], "x-ms-request-id": [ - "de8deaf1-1f55-4b18-9266-b585e4ce091c" + "ca755ff2-d625-4e75-ba81-21c883b11e56" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,19 +1347,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11986" ], "x-ms-correlation-request-id": [ - "4ac3376f-4220-4aac-ba17-56fd4f8286bb" + "7e2da05c-1f48-4eb9-9ccb-de7ce3f742ea" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165132Z:4ac3376f-4220-4aac-ba17-56fd4f8286bb" + "SOUTHEASTASIA:20200907T092747Z:7e2da05c-1f48-4eb9-9ccb-de7ce3f742ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:32 GMT" + "Mon, 07 Sep 2020 09:27:47 GMT" ], "Content-Length": [ "935" @@ -1245,26 +1371,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a7cf02d-60d0-4af8-9b92-bebd6c06e4ec" + "7d1ed2f3-abbd-4d12-aab3-d9de4af85732" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1275,7 +1401,7 @@ "no-cache" ], "x-ms-request-id": [ - "3998b144-cc28-4015-9ac0-00a95f94ccf7" + "c3e1bc5b-072d-4e83-851e-826c23ad5fd3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,19 +1410,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11989" ], "x-ms-correlation-request-id": [ - "61a6b999-f162-42b1-b89f-052388c91859" + "18ea8f3a-bf09-46be-8b28-62ebfdd112e0" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165030Z:61a6b999-f162-42b1-b89f-052388c91859" + "SOUTHEASTASIA:20200907T092645Z:18ea8f3a-bf09-46be-8b28-62ebfdd112e0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:50:30 GMT" + "Mon, 07 Sep 2020 09:26:45 GMT" ], "Content-Length": [ "473" @@ -1308,26 +1434,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXM/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "913bc44c-60a2-44b7-baaf-9639776d1147" + "a38937f1-c51a-4fff-9071-0e07d2d52ac4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1338,7 +1464,7 @@ "no-cache" ], "x-ms-request-id": [ - "3e720f34-b1de-41b3-843c-75ca30a7a5ff" + "0fceef2f-dfbf-400a-a346-d89812cb513a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1347,19 +1473,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11987" ], "x-ms-correlation-request-id": [ - "ddb7066e-90d5-4f0a-8931-769acfcd0b07" + "06892c6f-d6c5-4cd6-93b7-fb99903f6c3d" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165132Z:ddb7066e-90d5-4f0a-8931-769acfcd0b07" + "SOUTHEASTASIA:20200907T092747Z:06892c6f-d6c5-4cd6-93b7-fb99903f6c3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:32 GMT" + "Mon, 07 Sep 2020 09:27:47 GMT" ], "Content-Length": [ "935" @@ -1371,26 +1497,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547\",\r\n \"name\": \"share1pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFE68AB3F7\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:51:31Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share2pstestrg3547\",\r\n \"name\": \"share2pstestrg3547\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D7EDEFC138F324\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-05-01T16:50:29Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539\",\r\n \"name\": \"share1pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531047EDC9CC\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:27:46Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share2pstestrg7539\",\r\n \"name\": \"share2pstestrg7539\",\r\n \"type\": \"Microsoft.Storage/storageAccounts/fileServices/shares\",\r\n \"etag\": \"\\\"0x8D8531022C4ECF5\\\"\",\r\n \"properties\": {\r\n \"accessTier\": \"TransactionOptimized\",\r\n \"lastModifiedTime\": \"2020-09-07T09:26:44Z\",\r\n \"shareQuota\": 5120,\r\n \"enabledProtocols\": \"SMB\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547/fileServices/default/shares/share1pstestrg3547/restore?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Ny9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmczNTQ3L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539/fileServices/default/shares/share1pstestrg7539/restore?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOS9maWxlU2VydmljZXMvZGVmYXVsdC9zaGFyZXMvc2hhcmUxcHN0ZXN0cmc3NTM5L3Jlc3RvcmU/YXBpLXZlcnNpb249MjAxOS0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{\r\n \"deletedShareName\": \"share1pstestrg3547\",\r\n \"deletedShareVersion\": \"01D61FD89E19387B\"\r\n}", + "RequestBody": "{\r\n \"deletedShareName\": \"share1pstestrg7539\",\r\n \"deletedShareVersion\": \"01D684F8FFB4EDA9\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "802dd5f4-ed68-44d1-8bd1-c83ee764d9bd" + "20adc5e6-2b6e-4468-824c-680ead638ea8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1407,7 +1533,7 @@ "no-cache" ], "x-ms-request-id": [ - "8d9ae7a7-3a6f-4059-9df9-13a4dc905c6f" + "5b2a59e6-035a-4e7f-9725-bb251934cbb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1419,16 +1545,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f1fb299e-0fd9-4754-8de9-91ff1915fee5" + "e14ff566-b245-44ec-b69c-959cb3a4fe83" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165131Z:f1fb299e-0fd9-4754-8de9-91ff1915fee5" + "SOUTHEASTASIA:20200907T092746Z:e14ff566-b245-44ec-b69c-959cb3a4fe83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:31 GMT" + "Mon, 07 Sep 2020 09:27:46 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -1444,22 +1570,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg3547/providers/Microsoft.Storage/storageAccounts/stopstestrg3547?api-version=2019-06-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnMzU0Ny9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourceGroups/pstestrg7539/providers/Microsoft.Storage/storageAccounts/stopstestrg7539?api-version=2019-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnNzUzOS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE5LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60fbdbdb-8ace-46bc-a45d-e4c30cebffe2" + "90c15f8c-3168-4cd5-9421-2577560aa3b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Storage.StorageManagementClient/16.0.0.0" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Storage.StorageManagementClient/17.2.10.0" ] }, "ResponseHeaders": { @@ -1470,7 +1596,7 @@ "no-cache" ], "x-ms-request-id": [ - "3dea846c-0532-4191-b8cc-4f22518d242d" + "8d142720-9f4d-4bd0-9f50-9becece4dda8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,19 +1605,19 @@ "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14997" ], "x-ms-correlation-request-id": [ - "75d5fe89-9276-4ad6-b439-12fb8c14e6af" + "18fc40e2-71d5-4a51-aadf-7876c96ca954" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165138Z:75d5fe89-9276-4ad6-b439-12fb8c14e6af" + "SOUTHEASTASIA:20200907T092755Z:18fc40e2-71d5-4a51-aadf-7876c96ca954" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:38 GMT" + "Mon, 07 Sep 2020 09:27:55 GMT" ], "Content-Type": [ "text/plain; charset=utf-8" @@ -1507,22 +1633,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg3547?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnMzU0Nz9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/resourcegroups/pstestrg7539?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnNzUzOT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "618df6cf-e0d8-4ed7-8308-13ff842b9c29" + "58d0ca08-064a-42ba-9367-acac41c30700" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1533,22 +1659,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" + "14996" ], "x-ms-request-id": [ - "45a4e68c-a71c-418c-8ca4-c679d20629d5" + "14e257e1-9056-40f2-a980-2d9500af7bc6" ], "x-ms-correlation-request-id": [ - "45a4e68c-a71c-418c-8ca4-c679d20629d5" + "14e257e1-9056-40f2-a980-2d9500af7bc6" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165142Z:45a4e68c-a71c-418c-8ca4-c679d20629d5" + "SOUTHEASTASIA:20200907T092758Z:14e257e1-9056-40f2-a980-2d9500af7bc6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1683,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:42 GMT" + "Mon, 07 Sep 2020 09:27:58 GMT" ], "Expires": [ "-1" @@ -1570,16 +1696,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1590,22 +1716,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11983" ], "x-ms-request-id": [ - "89f0d667-6150-4c53-99e5-81cedd2fc9f2" + "a214b62d-b4cf-4819-a014-79c70d0d60fc" ], "x-ms-correlation-request-id": [ - "89f0d667-6150-4c53-99e5-81cedd2fc9f2" + "a214b62d-b4cf-4819-a014-79c70d0d60fc" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165158Z:89f0d667-6150-4c53-99e5-81cedd2fc9f2" + "SOUTHEASTASIA:20200907T092813Z:a214b62d-b4cf-4819-a014-79c70d0d60fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1614,7 +1740,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:51:57 GMT" + "Mon, 07 Sep 2020 09:28:13 GMT" ], "Expires": [ "-1" @@ -1627,16 +1753,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1647,22 +1773,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" + "https://management.azure.com/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11982" ], "x-ms-request-id": [ - "43a536c5-e627-41ea-9cff-3f665b321265" + "da56d507-221f-463f-af6d-e7dec308d39a" ], "x-ms-correlation-request-id": [ - "43a536c5-e627-41ea-9cff-3f665b321265" + "da56d507-221f-463f-af6d-e7dec308d39a" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165213Z:43a536c5-e627-41ea-9cff-3f665b321265" + "SOUTHEASTASIA:20200907T092829Z:da56d507-221f-463f-af6d-e7dec308d39a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1671,7 +1797,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:52:13 GMT" + "Mon, 07 Sep 2020 09:28:28 GMT" ], "Expires": [ "-1" @@ -1684,16 +1810,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1704,16 +1830,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11981" ], "x-ms-request-id": [ - "342e4052-0b04-4636-8b3f-bcd19768b194" + "d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" ], "x-ms-correlation-request-id": [ - "342e4052-0b04-4636-8b3f-bcd19768b194" + "d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165229Z:342e4052-0b04-4636-8b3f-bcd19768b194" + "SOUTHEASTASIA:20200907T092844Z:d0a0bf61-e3ff-4164-837f-f5b302cdcbf2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1722,7 +1848,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:52:28 GMT" + "Mon, 07 Sep 2020 09:28:44 GMT" ], "Expires": [ "-1" @@ -1735,16 +1861,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzM1NDctV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSek0xTkRjdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", + "RequestUri": "/subscriptions/45b60d85-fd72-427a-a708-f994d26e593e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzc1MzktV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2016-09-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDViNjBkODUtZmQ3Mi00MjdhLWE3MDgtZjk5NGQyNmU1OTNlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemMxTXprdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE2LTA5LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.28207.03", + "FxVersion/4.6.29130.01", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.18363.", - "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.13" + "OSVersion/Microsoft.Windows.10.0.19041.", + "Microsoft.Azure.Management.Internal.Resources.ResourceManagementClient/1.3.22" ] }, "ResponseHeaders": { @@ -1755,16 +1881,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11980" ], "x-ms-request-id": [ - "db4a9606-a9eb-4357-975e-432aa28afcba" + "62afd1a0-b0da-428c-8966-21d04d8504a5" ], "x-ms-correlation-request-id": [ - "db4a9606-a9eb-4357-975e-432aa28afcba" + "62afd1a0-b0da-428c-8966-21d04d8504a5" ], "x-ms-routing-request-id": [ - "SOUTHEASTASIA:20200501T165229Z:db4a9606-a9eb-4357-975e-432aa28afcba" + "SOUTHEASTASIA:20200907T092845Z:62afd1a0-b0da-428c-8966-21d04d8504a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1773,7 +1899,7 @@ "nosniff" ], "Date": [ - "Fri, 01 May 2020 16:52:28 GMT" + "Mon, 07 Sep 2020 09:28:44 GMT" ], "Expires": [ "-1" @@ -1788,7 +1914,7 @@ ], "Names": { "Test-ShareSoftDelete": [ - "pstestrg3547" + "pstestrg7539" ] }, "Variables": { diff --git a/src/Storage/Storage.Management/ChangeLog.md b/src/Storage/Storage.Management/ChangeLog.md index 04774ae34790..1e2a021eb70d 100644 --- a/src/Storage/Storage.Management/ChangeLog.md +++ b/src/Storage/Storage.Management/ChangeLog.md @@ -18,12 +18,12 @@ - Additional information about change #1 --> ## Upcoming Release -* Support enable/disable/get share soft delete properties on file Service of a Storage account +* Supported enable/disable/get share soft delete properties on file Service of a Storage account - `Update-AzStorageFileServiceProperty` - `Get-AzStorageFileServiceProperty` -* Support list file shares include the deleted ones of a Storage account, and Get single file share usage +* Supported list file shares include the deleted ones of a Storage account, and Get single file share usage - `Get-AzRmStorageShare` -* Support restore a deleted file share +* Supported restore a deleted file share - `Restore-AzRmStorageShare` * Fixed help issue for New-AzStorageAccount parameter -Kind default value [#12189] * Fixed issue by add example to show how to set correct ContentType in blob upload [#12989] diff --git a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv index f19ed991e37c..056304695e21 100644 --- a/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv +++ b/tools/StaticAnalysis/Exceptions/Az.Storage/SignatureIssues.csv @@ -68,3 +68,4 @@ "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.NewAzureStorageAccountObjectReplicationPolicyRuleCommand","New-AzStorageObjectReplicationPolicyRule","1","8100","New-AzStorageObjectReplicationPolicyRule Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.EnableAzStorageBlobRestorePolicyCommand","Enable-AzStorageBlobRestorePolicy","1","8410","Parameter RestoreDays of cmdlet Enable-AzStorageBlobRestorePolicy does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name." "Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.NewAzureStorageBlobRangeToRestoreCommand","New-AzStorageBlobRangeToRestore","1","8100","New-AzStorageBlobRangeToRestore Does not support ShouldProcess but the cmdlet verb New indicates that it should.","Determine if the cmdlet should implement ShouldProcess and if so determine if it should implement Force / ShouldContinue" +"Microsoft.Azure.PowerShell.Cmdlets.Storage.Management.dll","Microsoft.Azure.Commands.Management.Storage.UpdateAzStorageFileServicePropertyCommand","Update-AzStorageFileServiceProperty","1","8410","Parameter ShareRetentionDays of cmdlet Update-AzStorageFileServiceProperty does not follow the enforced naming convention of using a singular noun for a parameter name.","Consider using a singular noun for the parameter name."